Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
andymanning #1
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
-
underlines on hyperlinks
Is it possible to remove underlines on some hyperlinks and not others on the same page? -
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... -
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... -
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... -
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?... -
Murray *ACE* #2
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
-
andymanning #3
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
-
Michael Fesser #4
Re: removing underlines from text links
..oO(andymanning)
Better:>no worries... i've found it! if it helps anyone else, just paste this into the 'head'...
>
><STYLE>
><!--
>
>A {text-decoration:none}
>
>-->
></STYLE>
<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



Reply With Quote

