|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Dec 2001
Location: CO, US
Posts: 3,056
|
How the fuck do you get rid of the underline on a text hyperlink with dreamweaver mx. Just started using it recently - I'm sure its very simple but I cant figure it out.
![]() |
|
|
|
|
|
#2 |
|
Show Yer Tits!
Industry Role:
Join Date: Feb 2002
Location: Somewhere Out there...
Posts: 25,792
|
I don't use dreamweaver but it could be done with CSS (cascading style sheets). Do a search on Google...
__________________
![]() Scammer Alert: acer19 acer [email protected] [email protected] Money stolen using PayPal
|
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Dec 2001
Location: CO, US
Posts: 3,056
|
Yeah I figure it could be done with CSS too but damn It's just one fucking text link on one page and I need to get rid of the damn underline - any help?
|
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Oct 2002
Location: The Falls, eh
Posts: 1,373
|
Add this between your < head> and < /head> tags:
< style type="text/css"> a:link { text-decoration: none} < /style> |
|
|
|
|
|
#5 |
|
Confirmed User
Join Date: Feb 2002
Location: Free Speech Land
Posts: 9,484
|
If you want to do it with Dreamweaver, rather than using the simple method, try this:
Right click on the document. Choose "CSS Styles". Choose "New CSS Style". Choose Type "Redefine HTML Tag". Tag "a". OK Choose "Decoration = none". I think that should do it. Don't sue me if it's wrong. |
|
|
|
|
|
#6 |
|
Confirmed User
Join Date: Dec 2001
Location: CO, US
Posts: 3,056
|
hmmmm?
|
|
|
|
|
|
#7 |
|
Registered User
Join Date: Jan 2002
Posts: 1,634
|
Mr Fiction is correct , but that will effect all the links...
why not just edit the "special" link directly in the code window: <a href="mylink.htm" style="text-decoration: none"> mylink</a> simply add style="text-decoration:none" to the "a" tag That is probably the simplest way.. ronbotx |
|
|
|
|
|
#8 | |
|
Confirmed User
Join Date: Dec 2001
Location: CO, US
Posts: 3,056
|
Quote:
|
|
|
|
|