MyBB Community Forums

Full Version: border in menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://www.aclubbers guide.net (without the space)

How do i change the border where the menu is (the one that has calender member list etc) so that the border is black?

Cheers
That could be changed in your theme settings or your header templates. Just look around in these places if you don't find it report back here Smile
ive checked the theme settings i couldnt find it in there
in the css editor find:
.welcome{
background-color:#f29935;
border-left-style: border-color: black; solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-top-width: 1px; border-bottom-style: solid; border-bottom-width: 1px;
font-size:11px;
font-weight:bold;
font-family:tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
padding: 3px 6px 3px 6px;
white-space: nowrap;
}

and replace with:
.welcome{
background-color:#f29935;
border:#000000 solid 1px;
font-size:11px;
font-weight:bold;
font-family:tahoma, verdana, geneva, lucida, lucida grande, arial, helvetica, sans-serif;
padding: 3px 6px 3px 6px;
white-space: nowrap;
}

that should fix it.

I also suggest changing the text/links in that menu to black. They'd be much easier to see if you did that.
if you wish do do that find
.welcome a{ 
color:#fff; 
} 
 
.welcome a:hover{ 
color:#fff;
text-decoration:underline;
}

.welcome a:visited{
color:#fff;
}

and replace it with
.welcome a{ 
color:#000; 
} 
 
.welcome a:hover{ 
color:#000;
text-decoration:underline;
}

.welcome a:visited{
color:#000;
}
hey dude do you have the original version of this file i seem to have messed somthing up now.. I cant figure out what.....

check it otu at http://www.aclubbersguide .net {without the space}
psyion Wrote:hey dude do you have the original version of this file i seem to have messed somthing up now.. I cant figure out what.....

check it otu at http://www.aclubbersguide .net {without the space}

If you want the code then here
http://community.mybboard.net/showthread.php?tid=12027

But vB style themes (theres lots)
http://community.mybboard.net/showthread.php?tid=19352
http://community.mybboard.net/showthread.php?tid=18438
http://community.mybboard.net/showthread.php?tid=19551
http://community.mybboard.net/showthread.php?tid=19390
http://community.mybboard.net/showthread.php?tid=20023
lol damn i was tired when i messe dthat up lol... all sorted now thanks anyway