HTML Question !!!!! Help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Student
    Registered User
    • Oct 2002
    • 66

    #1

    HTML Question !!!!! Help

    I have a 1 celled table with about 50 links in it and growing.
    I want to be able to change the link atributes for that table ONLY.
    I do not want it to effect the rest of the kinks on the page!

    I want to change
    ..... the link color
    ..... remove underline
    ..... add hover high light
    ..... and visited color

    Can this be done for 1 table ONLY
    and have another table with different link atributes??

    Never Stop Learning !
    Never Stop Making Money !

    Click here to succeed
  • mech
    Confirmed User
    • Oct 2002
    • 343

    #2
    Some simple CSS will take care of what you need. http://www.htmlgoodies.com/beyond/rollover.html
    Geo-target banners, text, snippets of code...
    basically anything on your website with Geo-Ads PHP.

    Comment

    • Dragon Curve
      Confirmed User
      • Oct 2002
      • 252

      #3
      PHP Code:
      <a href="mylink.html">This link's colour will be normal</a>
      
      <style>
      td.myLinks a { color: #FF0000; }
      </style>
      
      <table><tr><td class="myLinks">
      <a href="mylink.html">Oh my lord, it's red inside the table</a>
      </td></tr></table> 
      
      it's tiny so copy it somewhere else =)
      Last edited by Dragon Curve; 10-21-2002, 04:23 PM.

      Comment

      • Student
        Registered User
        • Oct 2002
        • 66

        #4
        Thanks

        mech .....
        ..... that site has alot of good info, a definite bookmarker

        Dragon Curve .....
        ..... thanks for that code! Exactly what I was looking for!!



        Never Stop Learning !
        Never Stop Making Money !

        Click here to succeed

        Comment

        Working...