Changing colour of footer background and footer text, Blink theme

  • Unknown's avatar

    Hi, I wondered if anybody could help me with a bit of CSS to change colour of footer background and footer text. It’s currently black and I’d like it to be be white and the text black.

    I am using the Blink theme.

    Many thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Here’s some code to try out, I’ve set the colours to off-white and off-black because it’s a bit easier to read and there’s an example of setting a different hover colour on the links too, see what you think:

    .site-footer {
        background-color:#eee;
        color:#111;
    }
    
    .site-footer a {
        color:#111;
        border-color:#111;
    }
    
    .site-footer a:hover {
        color:#666;
        border-color:#666;
    }
  • Unknown's avatar

    Thanks so much! That looks wonderful!

  • The topic ‘Changing colour of footer background and footer text, Blink theme’ is closed to new replies.