MyBB Community Forums

Full Version: fix a white "border"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've just started practicing coding again and can't seems to get rid of this white line in the dropdown menu.

Screenshot: http://gyazo.com/fbcbbc81fa772008ef06469f52a19be0

Click on the "Home" button for the dropdown to appear.

Hopefully someone can figure this out. :/ Thanks!

http://forums.visualizeedits.com/index.php

Also, any tips for the menu such as a cleanup code will help me! I'm willing to listen to any advice you guys give me for this. The red hover color in the menu is temporally to help me see the pixel easier while fixing menu issues.

Practicing by trying to recreate this theme. (Not completely though)
http://www.themesteam.com/wide/
Could anybody help me with this at all? Sad
Hi,
I can't see a white border with Chrome browser - maybe you mean the box shadow of that element.

Try a change in Menu.css (#149):

#mainmenu ul ul {
	background:#0e151b; margin:0; padding:0;
	-moz-box-shadow: inset 0 2px 2px #b3b3b3;
	-webkit-box-shadow: inset 0 2px 2px #B3B3B3;
	box-shadow: inner 0 2px 2px #b3b3b3;
}

to:

#mainmenu ul ul {
	background:#0e151b; margin:0; padding:0;
	-moz-box-shadow: inset 0 2px 0 #b3b3b3;
	-webkit-box-shadow: inset 0 2px 0 #B3B3B3;
	box-shadow: inner 0 2px 0 #b3b3b3;
}
Thank you very much!! That definitely did the trick. Wink
Cheers!