• Resolved .hb.

    (@hb-1)


    I have a long running WordPress site (I think since 2008) which is on Twenty Twelve for I don’t know how many years now. For some reason completely unknown to me, some styling elements changed some time ago, mainly the background color /which is now white, but used to be dark grey) and some link styles.

    The problem is: I cannot remember how I got there when I set up the theme up back in the days. I tried everything I could find in the “additional css” tab for the theme, but wasn’t able to change the background color.

    Can anybody point me in the right direction?

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Your individual style is still available, but it is only loaded after the style of the theme. Due to an unfavorable selector, the grey coloring of the background is no longer visible.

    You would have to do the following to solve this:
    Go to Appearance > Customizer > Additional CSS. This is the place you were looking for ??
    There you should see your individual style, currently e.g. this one here:

    .site {
    background-color: #444444;
    }

    Change that to

    body .site {
    background-color: #444;
    }

    After saving, the background color should be visible again.

    Thread Starter .hb.

    (@hb-1)

    Thanks man, you’re a life saver – that did the trick.

    Now I have to readjust text and the link colors. Any hint where to do that?

    Also add body in front of it, which increases the value for the properties. For example:

    body .main-navigation li a {
     color: #dddddd;
    }
    Thread Starter .hb.

    (@hb-1)

    Thanks again, seems I got it right for now.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Color issues’ is closed to new replies.