• Hi,

    I want to be able to change any text color with the menu from wordpress. But it always stays this grey when I try.

    What should I adjust in the CSS code?

    [ use pastebin if posting large amounts of code ]

Viewing 5 replies - 1 through 5 (of 5 total)
  • It would be helpful if you posted a link to the live version of your site so we could see what’s wrong with it.

    Thread Starter infidel1979

    (@infidel1979)

    You are right, I am sorry.

    heaven4casinos.com/casino-software/microgaming-casinos/wintingo-casino-review

    I want the text to be black and the bolder parts in another color. I want to be able to change to any color I like when I want to with the color pallet option.

    Can you help me?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    For identifying the correct CSS, the Firefox extension Firebug is a real useful tool. The CSS is usually theme specific.

    Before you make any changes to your theme’s CSS, create a child theme and make your modifications there.

    As an example, in a child theme for Twenty Eleven, this would do all sorts of color abuse to your readers.

    .entry-content p {
            color: rgb( 255, 55, 55);
    }
    .entry-content p a {
            color: rgb( 55, 255, 55);
    }
    #access a {
            color: rgb( 255, 55, 55);
    }

    Which I was able to get by inspecting the content and menu with Firebug.

    Thread Starter infidel1979

    (@infidel1979)

    Is there not a way to chage one part of the css so I can change colors with the menu of wordpress?

    [ Duplicate http://wordpress.org/support/topic/cant-seem-to-change-fonts-color?replies=3 – closing ]

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Yes, there is.

    But you need to identify the specific matching CSS first. That Firebug tool I mentioned will help you do that when you edit the (make a child theme) style.css file.

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