• Resolved esachs44

    (@esachs44)


    I working on the gallery’s on a site for someone and I need to change a few things with he FooGallery albums and gallery.
    For the Album, where it says “Recent Projects” I want to change the font and size of that. I also want to move the album titles down instead of being in the middle of the thumbnails.
    For the Gallery, I want to change the font and size of “More of our Work”

    Any help is appreciated! Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @esachs44

    You can use the following CSS to change the font and size of where it says “Recent Projects”:

    h2.fg-header-title {
        font-size: 40px;
        font-family: "system-ui";
    }

    Relace the value of font-size with the font size you prefer and replace the value of font-family with the font you prefer.

    To move the album titles down, you can use the following CSS code to do so:

    .fg-pile-cover-content {
        margin-top: 200px;
    }

    Lastly, to change the font size and font of “More of our Work”, kindly use the following CSS code:

    .elementor-widget-container h5 {
        font-size: 40px;
        font-family: "system-ui";
    }

    To add the code to your site, go to the Edit page of that particular gallery and if you scroll down past the Gallery Settings section, you’ll see the “Custom CSS” section. Paste the CSS code on the text box below it and save. You can also paste it to your theme’s style.css file or custom CSS/additional CSS area.

    Thanks.

    Kind regards,
    Elvis.

Viewing 1 replies (of 1 total)
  • The topic ‘FooGallery Change Title size’ is closed to new replies.