Posted - 01/05/2018 : 13:52:57
Hi Becky, the top menu is not working correctly the links are missing the opening quote " and some are hard coded with http and others https this can cause customers to lose their cart contents set links so that they are relative and not absolute. Check all links that may need fixing including the left menu. Also modern browsers support html5 and recognize blank as the target I would change new to blank see 6.16 https://www.w3.org/TR/html401/types.html#type-frame-target Change: <li class="dd"><a href=http://www.yourdomain.com/products.php?cat=Loser+Awards" target="new">Loser Awards</a></li> <li class="dd"><a href=http://www.yourdomain.com/products.php?cat=Corporate+Meetings" target="new">Corporate Meetings</a></li> <li class="dd"><a href=https://http://www.yourdomain.com/funnytrophies.php" target="new">Gag Gift</a></li> To <li class="dd"><a href= "/products.php?cat=Loser+Awards" target="blank">Loser Awards</a></li> <li class="dd"><a href= "/products.php?cat=Corporate+Meetings" target="blank">Corporate Meetings</a></li> <li class="dd"><a href= "/funnytrophies.php" target="blank">Gag Gift</a></li> Side colors: To change the background color of the full left container add background-color attribute to .sidebar1 in the style.css around line 112 To change shop by product container on the left add background-color attribute to .cat ul in the style.css around line 148 To change links within set the background-color on the class .cat li in the style sheet around line 153 Winners never quit, quitters never win CSS and Responsive DesignsUser Manual for Ecommerce Templates
|