html - How do I make this menu black and remove underline? -
i'm creating website future clothing company. don't have experience coding, bear me if it's bit sloppy. want full black line go across page , make horizontal menu black , remove underline. how do this?
<img border="0" src="http://www.miacreative.com/esw/images/white-box-mid.png" alt="vealed" width="280" height="81"> <li><a href="#"> <li><a href="#">men</a></li> <img border="0" src="http://www.miacreative.com/esw/images/white-box-mid.png" alt="vealed" width="30" height="81"> <li><a href="#">women</a></li> <img border="0" src="http://www.miacreative.com/esw/images/white-box-mid.png" alt="vealed" width="30" height="81"> <li><a href="#">photography/art</a></l
added style anchor tags , changed width of hr tag 100%.
<!doctype html> <html> <head> <style> <!-- a:hover{color:#000000;} --> </style> <p> </p> <img border="0" src="http://img812.imageshack.us/img812/2628/rf3h.png" alt="vealed" width="280" height="81"> <!-- hr tag needed 100% width, not 60% --> <hr color="black" width="100%"> <p> </p> <!--added style here , referenced in class atribute of anchor tags in global nav. --> <style> .navlink { color: #000000; text-decoration: none !important;} ul { list-style-type:none; font-size: xx-large; font-family: helvetica neue; font-weight: lighter; margin:0; padding:0; } li { display:inline; } </style> </head> <body> <ul id="nav" > <img border="0" src="http://www.miacreative.com/esw/images/white-box-mid.png" alt="vealed" width="280" height="81"> <li><a href="#"> <li> <!-- see class attribute here --> <a href="#" class="navlink">men</a> </li> <img border="0" src="http://www.miacreative.com/esw/images/white-box-mid.png" alt="vealed" width="30" height="81"> <li><a href="#" class="navlink">women</a></li> <img border="0" src="http://www.miacreative.com/esw/images/white-box-mid.png" alt="vealed" width="30" height="81"> <li><a href="#" class="navlink">photography/art</a></l <p> </p> <p> </p> <p><p align="center"><img src='http://img547.imageshauuck.us/img547/3900/ehd.png' border='0'/></a><br> </ul> </body> </html>
Comments
Post a Comment