• Resolved josefern

    (@josefern)


    hi all,

    I am trying to change the color of the header on my new WP blog site https://www.fotopriority.com.au/

    do I change it in the style sheet? I can’t seem to find the right location in the code.

    if you need me to paste some css in here i can do that.

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • first – behind the top menu:

    #menu {
    	background-color: #191919;
    	height:3.0em;
    	border-bottom: 1px solid #373737;
    }

    second – around the header image:

    #header {
    	height: 216px;
    	background: #888888 url(images/header.jpg) no-repeat center;
    }

    you need to add the color info there (#888888 or any other color).

    Thread Starter josefern

    (@josefern)

    thanks alchymyth!

    a couple of questions
    re the header, I added

    #header {
    height: 216px;
    background: #F5F5F5 url(images/header.jpg) no-repeat center;
    }

    but didnt seem to work?

    also with the menu, I changed the header color but need to change the font color as when you hover over and click the font turns white and dissapears?

    thanks for your help!

    change css to

    #menu ul li a:hover {
    color:#000; /*balck color(change to ur color*/
    }
    #header a:hover {
    color:#000; /*balck color*/
    }

    Thread Starter josefern

    (@josefern)

    thanks Binni_77

    where do I place the code? under the /* Header */ or /* Menu */ section

    and I what the color to be f5f5f5

    so it is

    #menu ul li a:hover {
    color:#f5f5f5; /*balck color*/
    }
    #header a:hover {
    color:#f5f5f5; /*balck color*/
    }

    do I replace any css?
    sorry for all the questions! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘change header color’ is closed to new replies.