Removing hyperlink underline

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Chrisjc
    Contributor
    • Nov 2006
    • 375

    Removing hyperlink underline

    I have a STRING making a link for me once you pick alot of options on my site...

    everything works just fine how ever I dont want that HYPERLINK to be under lined I figured adding

    [HTML]<html><head><ST YLE>
    <!--
    a {text-decoration:none }
    //-->
    </STYLE></head></html>[/HTML]

    Would solve this problem how ever it did not... here is the String code.

    Code:
    echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='descr.php?image=".$image['imagename']."'><b>$pn </b></a>";
    Anyone have any ideas???
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Code:
    echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a style='text-decoration:none;' href='descr.php?image=".$image['imagename']."'><b>$pn </b></a>";
    Ronald :cool:

    Comment

    • Chrisjc
      Contributor
      • Nov 2006
      • 375

      #3
      Originally posted by ronverdonk
      Code:
      echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a style='text-decoration:none;' href='descr.php?image=".$image['imagename']."'><b>$pn </b></a>";
      Ronald :cool:

      Ahh see I tryed that too and it didnt work for me but I see you put a ( ' ) after none.... works fine now thanks Ron

      Comment

      Working...