removing underlines from text links

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default removing underlines from text links

    hi there!

    i have a few text links on my site and i would like to remove the 'underlines'
    for aesthetics,

    does anybody know how this can be done (i am aware that there is a piece of
    code that can be placed into the 'head' of the html but am at a loss as to
    where to find it?)

    any help would be much appreciated, thank you!

    andymanning Guest

  2. Similar Questions and Discussions

    1. underlines on hyperlinks
      Is it possible to remove underlines on some hyperlinks and not others on the same page?
    2. Getting rid of URL underlines
      I'm using FH11 and cutting and pasting in some word text. In the word text, there is a URL and all text after the URL, in word, is underlined. HOW...
    3. removing some text
      Hello, I know nothing about perl but have a perl script that I need to modify. The line below removes all web links but leaves the text in the...
    4. Please help me with removing text
      I have a logo from which I would like to delete the text. I would then like to copy the background to make it look like there was nothing there to...
    5. Random underlines on aliased text
      Anyone know why the underline on aliased text is sometimes one pixel away, and other times bumped up to text, when character settings are the same?...
  3. #2

    Default Re: removing underlines from text links

    Pseudo-classes and container styles are what you need - here are some
    tutorials.
    [url]http://www.mako4css.com[/url]
    [url]http://www.thepattysite.com/linkstyles1.cfm[/url]
    [url]http://www.projectseven.com/tutorials/pseudoclasses/index.htm[/url]

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "andymanning" <webforumsuser@macromedia.com> wrote in message
    news:e3686k$c17$1@forums.macromedia.com...
    > hi there!
    >
    > i have a few text links on my site and i would like to remove the
    > 'underlines'
    > for aesthetics,
    >
    > does anybody know how this can be done (i am aware that there is a piece
    > of
    > code that can be placed into the 'head' of the html but am at a loss as to
    > where to find it?)
    >
    > any help would be much appreciated, thank you!
    >

    Murray *ACE* Guest

  4. #3

    Default Re: removing underlines from text links

    no worries... i've found it! if it helps anyone else, just paste this into the 'head'...

    <STYLE>
    <!--

    A {text-decoration:none}

    -->
    </STYLE>


    andymanning Guest

  5. #4

    Default Re: removing underlines from text links

    ..oO(andymanning)
    >no worries... i've found it! if it helps anyone else, just paste this into the 'head'...
    >
    ><STYLE>
    ><!--
    >
    >A {text-decoration:none}
    >
    >-->
    ></STYLE>
    Better:

    <style type="text/css">
    a {text-decoration: none}
    </style>

    Even better: An external CSS file.

    You should also read this:

    Guidelines for Visualizing Links
    [url]http://www.useit.com/alertbox/20040510.html[/url]

    Especially the first two points.

    Micha
    Michael Fesser Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139