• Resolved newb18

    (@newb18)


    Hi,

    Need some help on how to change the background & text colour of the footer on my webpage.

    It currently has a black background with white text but i would like to change it to a white background with black text.

    Thanks!

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • 1) Edit your file : wp-content/themes/interface/style.css
    2) Go to near line #2314
    3) Edit the line. See this https://prnt.sc/i70hs6
    4) Clear the cache if you have any cache plugin installed.
    5) That’s it

    In your customizer > additional css, add this:

    #site-generator {
        color: black;
        background-color: white;
    }

    Suggest that you learn to use your browser inspector to find and test changes like this.

    I am afraid @firoz that editing the theme files directly is ill-advised, the changes will be lost when there is a theme update. A better approach is to use a child theme, details here:
    http://codex.wordpress.org/Child_Themes
    Using the customizer is an attractive alternative for minor css tweaks as is the case here.

    • This reply was modified 6 years, 2 months ago by RossMitchell. Reason: response to other replies

    add below custom css here: Admin panel > Appearance > Customize > Additional CSS

    #site-generator { color: #000; background-color: #ffffff; }
    #site-generator .copyright a{ color: #000000; }

    Thread Starter newb18

    (@newb18)

    Thanks all for your help 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing background & tex colour of footer’ is closed to new replies.