Reply To: Button Text Color in front page 1

Homepage Community Forums Ambition Button Text Color in front page 1 Reply To: Button Text Color in front page 1

#18397
Wes
Moderator

    Assuming you’re referring to the Front Page 5 widget area. The padding comes from line 1624 –

    .flexible-widgets {
        overflow: hidden;
        padding: 120px 0 100px;
    }

    Changing this code will affect all of the other widget areas since they share the .flexible-widgets class. So if you want to add some code that only affects this particular section, try this –

    .front-page-5 .flexible-widgets {
        padding: 100px 0 80px;
    }

    I lowered the padding by 20px for the top and bottom as an example, you can always lower it more if you want.

    Let me know if that helps.