Results 1 to 4 of 4

Thread: <A HREF> properties???

  1. #1

    Thread Starter
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205

    <A HREF> properties???

    Anyone know how to remove the underline from a web-link?

    I'm sure it's possible, I just have no idea how...
    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

  2. #2
    PowerPoster beachbum's Avatar
    Join Date
    Jul 2001
    Location
    Wollongong, NSW, Australia
    Posts
    2,274
    Hi
    Here is a simple way
    Code:
    <a href="yourpage.htm" Style="text-decoration:none">Click Here</a>
    Regards
    Stuart
    Stuart Laidlaw
    Brightspark Financial Software
    http://www.gstsmartbook.com

  3. #3
    chenko
    Guest
    removes all underlines from links from on the page
    VB Code:
    1. <STYLE>
    2. <!--
    3. A{
    4. text-decoration:none;
    5. }
    6. -->
    7. </STYLE>

    removes all underlines from links with Class="styleset" (<A class="styleset" href="a.htm">link</a>)

    VB Code:
    1. <STYLE>
    2. <!--
    3. A.styleset{
    4. text-decoration:none;
    5. }
    6. -->
    7. </STYLE>


    #chenko

  4. #4

    Thread Starter
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205
    Cheers!

    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width