Changing Font using CSS

  • Unknown's avatar

    I am needing some help I am using the Mystique theme and wishing to change all of the blue lettering to Black or Red. I’ve read some of the forum posting on how to change color under the css but everything i’ve tried doesn’t work Can someone please help me to understand how to change the color using css. I am greatful for any help I can get

    This is my site here http://makaylakarillion.wordpress.com/

    Thanks
    Makayla

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

  • Unknown's avatar

    In Mystique, you can change all the links at one place. Add the following to your CSS edit window and change the hex color code to your liking:

    a {
    color: #0071BB;
    }
  • Unknown's avatar

    Thank you very much that worked,

    i was also wondering if i can change the red tabs , wouldn’t that just mean going into doing the same thing i did earlier b/c i posted them to the css but nothing happened and not sure what i’m doing wrong. i thought the red tab were called hover b/c the color on theme css is that red color am i doing something wrong? thanks for the help

  • Unknown's avatar

    Are you talking about the hover color for the links there were blue?

    a:hover {
    color: #ED1E24;
    }
  • Unknown's avatar

    Ah, ok you are talking about the red hover color on the navigation tabs.

    #access li:hover > a, #access ul ul:hover > a, #access .current_page_item a:hover {
    color: #ED1E24;
    }
  • The topic ‘Changing Font using CSS’ is closed to new replies.