Viewing 7 replies - 1 through 7 (of 7 total)
  • You might have added color: #F8F8FF; in your body tag, but later in style.css, you have this:

    #maincontent {
    color: transparent;
    }

    So you need to change color: transparent; to color: #F8F8FF;

    I was having the same problem as well for my link color. I looked everywhere in style.css to find the link color, but when I tried changing it, the same default color (an aqua) would appear. What am I doing wrong?

    Here is my site:
    https://suzyguese.com/

    The theme is Thrilling Heroics.

    Thanks for the help!

    @sguese – your theme has a theme options page wherein you have an option to choose which style you want. That chosen style’s CSS, in your case 3-blackandwhite.css in theme’s /styles/ folder overrides the color you added for your link in theme’s default style.css.

    If you’re set on that theme’s style, open 3-blackandwhite.css in said styles folder and apply color to the link tag, save and upload.

    Thank you very much mercime! It worked.

    Thread Starter Dani Weymouth

    (@dartists)

    YES – THANK YOU!!! This is my first day with WordPress and am still trying to figure out what all the parts to the CSS template refer to. Any idea which part refers to that Pagelink link in the middle of my custom header?

    @dartists – find the following in your theme’s style.css

    #cred {
    bottom:0;
    left:50%;
    margin-left:-62px;
    position:absolute;
    width:200px;
    }

    replace everything with
    #cred { display: none; }

    Thread Starter Dani Weymouth

    (@dartists)

    THANK YOU!!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Need help with font colors’ is closed to new replies.