[Resolved] Footer Widget Size

Home Forums Support [Resolved] Footer Widget Size

Home Forums Support Footer Widget Size

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #256078
    Yannick

    Hi Tom,
    I would like to adjust the margin/padding of my newsletter footer widget. On the “homepage” I’m using beaver builder and I was able to adjust the size of the newsletter plugin.
    How can I change the size of the footer widgets of the gp-theme? (for example on the stories page or the blog posts)

    Best wishes
    Yannick

    #256151
    Leo
    Staff
    Customer Support

    Hi Yannick,

    The options you are looking for are in Cusotmizer > Layout > Footer > Footer Widget Area Padding & Footer Padding.

    Let me know if this is what you are after.

    #256318
    Yannick

    Hi Leo,
    thank you for your answer.
    I would like to change the size of only one of the widgets (Footer Widget 3, the newsletter widget).
    I think I have to change this via Simple Css I just dont know how to “talk” to Footer Widget 3

    #256319
    Leo
    Staff
    Customer Support

    Should be able to use .footer-widget-3 for the CSS selector

    #256320
    Tom
    Lead Developer
    Lead Developer

    If you’re wanting to target a specific widget, this might help: https://generatepress.com/forums/topic/style-sidebar-widgets-individually/#post-44788

    #256327
    Yannick

    Thank you ๐Ÿ™‚

    #256329
    Leo
    Staff
    Customer Support

    Glad we can help!

    #256331
    Yannick

    One more question…. ๐Ÿ˜€

    I would like to adjust the max-width, so that the widget doesn’t get to big on big screens but as soon as I do that, the Widget is not centred anymore when it normally would become bigger than 600px, you know how I can solve this?

    My actual code:

    .footer-widget-3 {
        padding-left: 50px;
        padding-right: 50px;
        max-width: 600px;
        font-family: "Alegreya Sans SC";
        text-align: center;
    }
    #256361
    Tom
    Lead Developer
    Lead Developer

    To center a block element with a set width, you can do this:

    .footer-widget-3 {
        margin-left: auto;
        margin-right: auto;
    }
Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.