Quote Originally Posted by Tom_Ace View Post
I need help on fix this logo.gif issue. When restore down, the logo.gif get scroll. How do i avoid having the scorll on the logo.gif

Also there a border at the end of header menu by the "ebay". I want it take off as it is the end of menu just like the other side by "home".

www.cws-mart.com
To fix the logo gif issue, change:

Code:
#logoWrapperOuter {
	margin:0 auto;
	width:100%;
	overflow:auto;
	}

to:


Code:
#logoWrapperOuter {
	margin:0 auto;
	width:100%;
	overflow:hidden;
	}

For the ebay link, you can open up includes/templates/common/tpl_drop_menup.php and change the ebay link to (you don't need the <font color="white"></font>, it will be white anyway):

<li class="ebayLink"><a href="http://search.ebay.com/_W0QQsassZchoku_wing_starQQhtZ-1" target="_blank">EBAY</a></li>

then add this to the stylesheet_header_menu.css:

.ebayLink a {border:none!important}