Reply To: Change header color

Homepage Community Forums Epik Theme Support Change header color Reply To: Change header color

#9984
Wes
Moderator

    Ok so it looks like you’re using the dark blue theme, and you are editing the right area, but I noticed you only had 5 digits in your css for the background color –

    .epik-darkblue .head-wrap,
    .epik-darkblue .welcome,
    .epik-darkblue .home-feature-bg-dark,
    .epik-darkblue .author-box,
    .epik-darkblue .footer-widgets {
    	background: #fffff;
    	color: #eee;
    }

    It would need to either be 3 digits, or 6 digits for the color……you probably already know this, but I thought I mention it just in case.

    If you edit the background in that particular place, it will change all of the colors for those sections. If you just want to target a specific area, then separate the class like this –

    .epik-darkblue .head-wrap {
        background: #000;
    }

    and make sure it’s removed from the other part of the code.