MyBB Community Forums

Full Version: fixing my header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Okay, so i've been trying to fix my header on glowing theme over the past week, but I just can't fix it myself .__. i want my header width to be the same as my forum.

My current header: here

what I pretend to change: here

if you didn't understood my pain drawing, it's e.g something like this! can you give me some hints ?Toungue
though images are expected to speak, can you post your requirement in words please
I wanted to adjust my header menu and banner to the same width of my forums. And then adjust the logo a little bit to the left and the search bar to the right.


URL: http://www.forumanime.pt/
On header css try adding the margin, that should center it to center up with your forum. As far as the search bar and logo, I'm not really sure how to help you there. You might add in the float_left/float_right to those elements.

.header {
margin: 0px auto;
}
yea, that didn't worked at all.
Last resort would be to wrap the <center> and </center> tags around the banner.
Can you not just put the image into photoshop, adjust the width right then re-upload it?
Something like this?
[Image: M9O99te.png]


Remove background from the .header css

Then add this to .logobg
.logobg {
    background: #262626 url("http://i.imgur.com/QIMmO6V.jpg") no-repeat scroll 0 0 / cover ;
    height: 275px;
}
add/edit the following changes in global.css... Hard refresh (Ctrl+F5) the page after saving it to see the changes..

.header {
width: 960px;
margin: auto auto;
}

.search {
    margin-right: 10px;
}

.logo {
    margin-left: 0px;
}
what about the red menu on the header? should I change like the .header too? thanks for the help!
Pages: 1 2