• Resolved jessejharding

    (@jessejharding)


    hello!

    Seems like simple stuff but I’m having trouble coming up with custom css to change the two different colors (black and grey) on my site footer.

    I need the very bottom to be white and the black color to be #395b12

    • This topic was modified 5 years, 10 months ago by t-p.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator t-p

    (@t-p)

    I need the very bottom to be white

    Try this:

    footer .footer_btm {
        background-color: #fff;
        color: #cacaca;
        padding: 20px 0;
    }

    and the black color to be #395b12

    Try this:

    footer .footer_top {
        background-color: #395b12;
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.

    A custom CSS editor (usually titled Additional CSS) is included in the Customizer as of WordPress 4.7 specifically for this purpose.

    As an alternative, especially if you intend to modify more than just CSS, create a child theme.

    Moderator t-p

    (@t-p)

    Moved topic to Fixing WprdPress

    Thread Starter jessejharding

    (@jessejharding)

    Works! Thanks so much!

    Moderator t-p

    (@t-p)

    You are welcome ??

    Thread Starter jessejharding

    (@jessejharding)

    Although I now seem to be having issues adding widgets to my footer using theme customize? The widget menu is now gone from the customize window. Any ideas?

    Moderator t-p

    (@t-p)

    Please start a new topic for new issue. Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Changing Footer Colors?’ is closed to new replies.