MyBB Community Forums

Full Version: Logo help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to repeat a background going across the top. In the center with a border around it. Problem is it will not repeat correct even if I do top repeat -x; here is a picture http://i42.tinypic.com/k0t2d0.png in the white part I would like a pattern to repeat from left to right behind the logo part. this is what I was using for my logo to be centered

.logo {
text-align: center; 
	border: 2px solid #234615;
}
Try doing this with header.

#header {
    background: url(images/somebg.png) top repeat-x;
    text-align: center; 
    border: 2px solid #234615;
}
Nevermind, I have fix the problem. However, I have encountered a new problem. Where do I change the text color when hovering over the text at the top where it says "Search" "Calendar" "Memberlist" when I look at it it is black but when hovering over it it is white which matches my container so how do I change that?
.menu ul a:hover, .menu ul a:active {
color: #4874A3;
text-decoration: underline;
}