MyBB Community Forums

Full Version: Header image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello, how can I "long" header, now is this:
[Image: untitled-thumb.jpg]


And I want to be like:
[Image: untitled12-thumb.jpg]

I modified the css, I've tried padding, margin, but no results!
Link forum: http://tutorial-z.com/forum/
Place your header out of #container.
But how?
In 'header' template

[Image: Uz5u11T.png]

Also, set the padding of body to 0 in global.css.

body {
margin: 0;
padding: 0;
.
.
.
}
Theme deformed!
Sorry. This:

[Image: HNywipH.png]

Extremely sorry :p
But the text is in center:
[Image: untitled333-thumb.jpg]
In global.css:

#container {
text-align: left;
.
.
.
}

#content {
text-align: left;
.
.
.
}
Thank you,but another problem,the text nav is in left!
[Image: untitled333-thumb.jpg]

Fixed! Thank you effone! +1 rep!
Need your header template for that. Or of you don't wanna share,

if your navigation div id is #menu then your code must be like this:

<div id="menu">
<ul>
<li> ......
.....
.....
</li>
</ul>
</div>

make it:

<div id="menu">
<div id="container" style="margin: 0; padding: 0;">
<ul>
<li> ......
.....
.....
</li>
</ul>
</div>
</div>
Pages: 1 2