Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Change header color och space above WordPress

  • SOLVED

Hi,

www.newyorkinspiration.com

the black color in the header should be white
and
the header shall move up a bit, see image

thanks
Charlotte

Answers (3)

2011-11-14

Ryan Riatno answers:

Can you show me your header.php code?
Edit* Sorry i didn't know you are put your website :)


Ryan Riatno comments:

Edit your silver.css around line 8
#header{
background:#ffffff;
}


What browser you use?


Charlotte Raboff comments:

Hi Ryan,

thanks
I will get back to you soon I will have to check a thing before. Something strange has happen to my website...

2011-11-14

Julio Potier answers:

Hello

in your <em>http://www.newyorkinspiration.com/wp-content/themes/shaken-grid-premium/skins/silver.css</em>

#header {
background: url("images/darker-gradient.png") repeat-x scroll center bottom, url("../images/noise-2.png") repeat scroll 0 0 #FFFFFF;
}


and the header is rightly place, try to visit your site while you are not logged.
It seems that your admin bar is badly hidden ;)

See you soon

2011-11-14

Charles Klycinski answers:

First of all Your header is in right place. Your theme dont show admin bar propertlly. So you can just disable admin bar when You are loged in :

add to functions.php
add_filter( 'show_admin_bar', '__return_false' );

About header You need just to edit css file:wp-content/themes/shaken-grid-premium
/custom.css find #header and add inside header tag :

background:#FFF;

If You have extra questions feel free to ask :)