menu underline problem..please help! URGENT!

Discussion in 'HTML & Website Design' started by neham_rules, Jan 29, 2011.

  1. #1
    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?
     
    neham_rules, Jan 29, 2011 IP
  2. neham_rules

    neham_rules Peon

    Messages:
    244
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    can anyone help?
     
    neham_rules, Jan 29, 2011 IP
  3. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #3
    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):
     
    radiant_luv, Jan 29, 2011 IP
  4. securesite

    securesite Well-Known Member

    Messages:
    612
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    130
    #4
    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):
     
    securesite, Jan 29, 2011 IP
  5. securesite

    securesite Well-Known Member

    Messages:
    612
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    130
    #5
    ohh my god same time!
     
    securesite, Jan 29, 2011 IP
  6. securesite

    securesite Well-Known Member

    Messages:
    612
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    130
    #6
    PS: I would move him to divs instead of tables for the future. If you need this done contact me.
     
    securesite, Jan 29, 2011 IP
  7. allthewebsites

    allthewebsites Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    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):
     
    allthewebsites, Jan 29, 2011 IP