I want to set a full header in wordpress theme, while i want to keep the content narrow (center). How can i do that? I'm trying like:
<body>
<!-- BEGIN header -->
<div id="header">
...
</div>
<!-- END header -->
<div id="wrapper">
It will display background image fine, the title and other text inside the header will be totally in the left side. (As its the wrapper which keeps the content center,and now header is outside of the wrapper). If i put the header inside the wrapper tag, the text inside header is at right place but the header image will also be displayed within the wrapper area only (it will not be shown on full body). I want to have one image in header background, and a different image in body background.
I will be thankful if you can help me with this problem.