Changing Chunk theme header and size
-
I am using chunk theme and I would like to insert my own header. The header I want to use is outside of the size limitations. I know I need to insert it into the CSS but where in the code do I do that? And what do I write? This is the image: http://ekafashion.files.wordpress.com/2011/09/header3.jpg
It is 360 by 800 pixels.
Sorry, new to CSS and WordPress.
Thanks
The blog I need help with is: (visible only to logged in users)
-
To set a background image, you can use the “background” property in CSS. See http://www.w3.org/wiki/CSS/Properties/background for details about how that rule can be used.
In your case, for the Chunk theme, you can set the background to the image you mentioned using the #header id. Here is an example of how to set it up:
#header { background: url(http://ekafashion.files.wordpress.com/2011/09/header3.jpg) no-repeat; } -
-
- The topic ‘Changing Chunk theme header and size’ is closed to new replies.