Change Header Color in Inove?
-
Need some help in understanding how to change header banner color.
The blog I need help with is: (visible only to logged in users)
-
That is an image declared in a background declaration in #header.
#header { background: url("img/header.jpg") no-repeat scroll 0 0 transparent; }The image URL is: http://s2.wp.com/wp-content/themes/pub/inove/img/header.jpg .
You can either recreate that image in the color you want and then upload it to your media library and replace the relative URL in the background declaration with the absolute URL of your new image, or you can do something like this and just make it a solid color.
#header { background: #CC0000; border-radius: 6px 6px 0 0; }
- The topic ‘Change Header Color in Inove?’ is closed to new replies.