i'm making my friend a website over here and some tabs in the top menu are underlined somehow when i copied the design from another website.I want to get rid of the underlining for those tabs.Please someone tell me what i should do?
First, having inline styles is not a good idea. Go for external stylesheet. I encoutage you to read here http://www.w3schools.com/css/css_intro.asp anyways, if you need to get it done in your way then in each of your inline elements you need to add, for an example <a style="color: White; font-family: Tahoma; font-size: 10pt; [COLOR="red"]text-decoration: none[/COLOR]" href="tazzprofessionals.htm" id="ctl00_hlTazzProfessionals">Tazz Professionals</a> Code (markup):
I can solve this problem easily my friend. Add me as a friend on my tech website link below thats all you have to do. Just add to the ones you missed on the menu bar. text-decoration: none; Code (markup):
You are using inline styles. So, add "text-decoration: none;" style="color: White; font-family: Tahoma; font-size: 10pt;" Code (markup): to style="color: White; font-family: Tahoma; font-size: 10pt; text-decoration: none;" Code (markup): You should move away from inline style. Otherwise, you will face this problem repeatedly. Use a standard stylesheet file and link it to the web page. <link rel="stylesheet" type="text/css" href="style.css" /> Code (markup):