Is there any way to set up HTML so that no underline appears under the links, regardless of what the browser's settings are?
Is there any way to set up HTML so that no underline appears under the links, regardless of what the browser's settings are?
Bow before the mighty Javoo!
<a href="http://www.eyesonff.com/forums/" style="text-decoration: none; color: white; cursor: default">This paragraph is a link. Click me pleaseThere's only a <b>style="text-decoration: none; color: white; cursor: default"</b> stuck inside the A tags to remove the underline, leave it white like normal post text, and prevent the cursor from changing
</a>
There's also a way to do it with STYLE tags in the HEAD, but I can't remember how![]()
If anyone can help me with that, it'd be apprecciated. =)There's also a way to do it with STYLE tags in the HEAD
Bow before the mighty Javoo!
Here's style in the header tags:
‹STYLE TYPE="text/css"›
‹!--
a:link.BoBLink { text-decoration: none }
a:active.BoBLink { text-decoration: none }
a:visited.BoBLink { text-decoration: none }
--›
‹/STYLE›
This way you can define different looks for an "untouched" link, a link that's been visited, and when the mouse pointer hovers over a link.
Then you would define your link as such:
‹a class="BoBLink" href="webaddress"›link text‹/a›
The above definition can also be moved to an external stylesheet if your heart so desires and the contents of file would like like this:
a:link.BoBLink { text-decoration: none }
a:active.BoBLink { text-decoration: none }
a:visited.BoBLink { text-decoration: none }
And then to include the stylesheet in the html you would put this in your header tags:
‹link rel=stylesheet href="BoBstylesheet.css" type="text/css"›
Where "BoBstylesheet.css" is where the stylesheet lives(much like you define the source of an image. Then the link would be called the same way.
Oh, and stylesheets must have the filetype ".css" on the end.
Huzzah. It was for all the links, but it looks like if I just remove the .BoBLink stuff then it'll automatically adjust all links on the page to work like that. Thankya muchly, both of you. *learns something new*
Bow before the mighty Javoo!