MyBB Community Forums

Full Version: CSS conflict?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
To fix this problem that I have? For some reason they are conflicting?


#footer ul.menu li {
    display: inline;
    margin: 0 5px;
}
#panel ul.menu li {
    display: inline;
    margin: 0 5px;
}
You have your footer INSIDE your panel.

Chech the close tags "</div>" in the footer.
Thanks very much you right. Should the panel end before footer?

Hi could you please check my code I think it all messed up!
http://letsforum.com

Content appears to be in the panel and the whole thing is in the header.
I think its fully messed up.... right now you have....


<div id="container">
	<div id="header">
		<div id="panel">
			<div id="content"></div>
			<div id="footer"></div>
		</div>
	</div>
</div>

it should be as.....


<div id="container">
	<div id="header">
		<div id="panel"></div>
	</div>
	<div id="content"></div>
	<div id="footer"></div>
</div>
Thanks so much. I was missing 2 divs in header_welcomeblock_guest template.

Could you check please now what is wrong with:

Container and Body. Doesn't seem to wrap the entire page.
Container have min-width: 990px... what you want to do with that?

You want to reduce the width of container and center it to the body or what?
I am using firebug and when I hover over container and body for some reason not the entire website is selected as if something is limiting them.

I don't won't to change container just fix WC3 errors like the one i have described above.
In body and container, remove "height: 100%"
Thanks really did the thick you are awesome. I was using that to keep my footer always at the bottom when you know the content is too short like help document the footer doesn't remain at the bottom.

Could you help me to achieve this without "height: 100%" please?
By default if you fill the content of the forum, the footer goes to the bottom automatically.

Try to remove that height and see whats happen.
Pages: 1 2