Buy me a coffee

How to add text to Gallery Grid Section

To add text to the Gallery Grid Section, you can follow these steps.

#1. First, find the ID of the Gallery Grid Section. In my example, it is:

section[data-section-id="66b35593870615758574885e"]

How To Add Text To Gallery Grid Section 01 Min

#2. Next, use this code to Custom CSS box.

section[data-section-id="66b35593870615758574885e"] .gallery-grid:before {
    content: "Featured Clients";
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 30px;
    color: #000;
    letter-spacing: 0px;
}

How To Add Text To Gallery Grid Section 02 Min

#3. Result

How To Add Text To Gallery Grid Section 03 Min

#4. If you want to add text next to Gallery Grid, you can use this new CSS code

@media screen and (min-width:768px) {
section[data-section-id="66b35593870615758574885e"] {
 .gallery-grid {
    display: flex;
    justify-content: space-between;
}
/* text style */
.gallery-grid:before {
    content: "Featured Clients";
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 30px;
    color: #000;
    letter-spacing: 0px;
}
/* gallery images width */
.gallery-grid-wrapper {
    width: 70% !important;
}}}

How To Add Text To Gallery Grid Section 04 Min

How To Add Text To Gallery Grid Section 05 Min