View Full Version : Non-Underline link?
quotealex
04-03-2001, 11:57 AM
How you make a link text without the unerline showing?
Thanks.
richard
04-03-2001, 12:00 PM
same Q posted on PC.
<style type="text/css">
<!--
a { text-decoration: none}
-->
</style>
richard
04-03-2001, 12:03 PM
or, if you want just a couple of links to be like this, and most of the links to be normal and underlined:
(in head tag)
<style type="text/css">
<!--
.link { text-decoration: none}
-->
</style>
Then use:
<a href="foo.html" class="link"> a link </a>
quotealex
04-03-2001, 05:24 PM
Thanks Richard. I'll try it.
richard
04-03-2001, 05:35 PM
no need to try it, it works http://bbs.adultwebmasterinfo.com/ubb/tongue.gif atleast in IE.
Lizard
04-04-2001, 03:54 AM
I dont think it's a good idea to remove
the underlines on links - newbies are told
that underlined text can be clicked.
quotealex
04-04-2001, 06:50 AM
Removing underlined texts is good when you want to link all your sites and pages but don't want to many surfers cliking on them. Basically, I'm using it so SE spiders can crawl all my sites and pages.
<font face="Verdana, Arial" size="2">Originally posted by Lizard:
I dont think it's a good idea to remove
the underlines on links - newbies are told
that underlined text can be clicked.</font>
Lizard
04-04-2001, 07:47 AM
You can do that like this:
<a href="http://www.whatever.com"></a>
Just dont put anything as the link text.
Works fine...
Richard,
Got a CSS question. If I want to use an external style sheet on multiple domains could that work? Instead of the path being like test.css would it be http://www.mydomain.com/text.css ??
Kinda just learning css.
richard
04-04-2001, 11:13 AM
yep Ride, you can do that.
<style type="text/css">
<!--
@import "http://www.qbabes.com/general.css";
-->
</style>
OR
<link rel="stylesheet" href="http://www.qbabes.com/general.css">
Then use the styles like normal, ie
<p class=infobold>Some InfoBold Text</p>
http://bbs.adultwebmasterinfo.com/ubb/smile.gif
richard
04-04-2001, 11:19 AM
In this case, amoungst other classes, general.css contains:
.infobold { font-family: Arial, Helvetica, sans-serif; font-size: 12pt; font-weight: bold; color: #66FFFF}
Abbadon
04-04-2001, 12:20 PM
If you have multiple pages using the same styles, you also get a couple of advantages by using an external stylesheet...
1) You can make site-wide changes by changing a single style sheet.
2) Once the stylesheet is loaded (and cached) from the first page, additional pages don't have to load it again (or load a longer page with an embedded stylesheet). A small savings, but 1k of text x 100,000 impressesions is a gig...
Groovy
04-04-2001, 01:05 PM
why is it 1k?
Just wondering if this works in both IE and Netscape? Sorry, too lazy to try it myself. http://bbs.adultwebmasterinfo.com/ubb/wink.gif
vBulletin® v3.7.3, Copyright ©2000-2012, Jelsoft Enterprises Ltd.