• Hello!

    Let me start by saying I’m VERY new to WordPress and CSS and so the answer to this may be very simple, and my apologies if I’m just being a dunce.

    I’m trying to change the stylesheet code to change the header of a page on my website from the default green to orange. I can change all the headers on the page but not the main one:

    http://www.getnexus.com

    In the page, you can see the text “Join the NEXUS Program today!” is green and I want to change that to match the header below, “Other border traveler services”, but can’t find where in the code I need to make this happen.

    Anyway, THANK YOU so much for any help you can provide!

    Melissa

    http://wordpress.org/extend/themes/dkret3/

Viewing 1 replies (of 1 total)
  • You could try this

    .entry-title a {
        color:#FF6600;
    }

    You might want to define it like this if you want to target both versions that are and aren’t links (if you have any like that)

    .entry-title,
    .entry-title a {
        color:#FF6600;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: dkret3] Change page header text color?’ is closed to new replies.