HighDots Forums  

text-decoration:none;

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss text-decoration:none; in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
twocans
 
Posts: n/a

Default text-decoration:none; - 11-02-2005 , 08:54 AM






Hi yea , I have a div that is using the css below. the links come out
undelined in IE not in firefox. I have sepent a few hours trying to figure
what I have been doing wrong.

#rightcontent a:link {color: #000099; text-decoration:none;}
#rightcontent a:hover { color: #FFFFFF; text-decoration:none;}

I see in my IE internet options one has "Underline links" always , hover,
never. (always is selected)

does any one know what the default is or should be set at, i just want to
hide text-decoration in some of the pages I create. I am sure I never had
this problem before with the text-decoration.

what should I do to be able to control this


regards

Kenny






Reply With Quote
  #2  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: text-decoration:none; - 11-02-2005 , 09:15 AM






I am set at Underline Links - Always.

Can you link me to the page?

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


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote

Quote:
Hi yea , I have a div that is using the css below. the links come out
undelined in IE not in firefox. I have sepent a few hours trying to figure
what I have been doing wrong.

#rightcontent a:link {color: #000099; text-decoration:none;}
#rightcontent a:hover { color: #FFFFFF; text-decoration:none;}

I see in my IE internet options one has "Underline links" always ,
hover, never. (always is selected)

does any one know what the default is or should be set at, i just want to
hide text-decoration in some of the pages I create. I am sure I never had
this problem before with the text-decoration.

what should I do to be able to control this


regards

Kenny








Reply With Quote
  #3  
Old   
robot88888888
 
Posts: n/a

Default Re: text-decoration:none; - 11-02-2005 , 10:18 AM



It's most likely because the links become visited links, you'll need another
rule:
#rightcontent a:visited {color: #000099; text-decoration:none;}

You could also try changing all the link states:
#rightcontent a {text-decoration:none;}


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote

Quote:
http://www.camcaller.com/z.html

Thanks Murray




"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote in message
news:dkahqo$cn0$1 (AT) forums (DOT) macromedia.com...
I am set at Underline Links - Always.

Can you link me to the page?

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


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote in message
news:dkagdk$apk$1 (AT) forums (DOT) macromedia.com...
Hi yea , I have a div that is using the css below. the links come out
undelined in IE not in firefox. I have sepent a few hours trying to
figure what I have been doing wrong.

#rightcontent a:link {color: #000099; text-decoration:none;}
#rightcontent a:hover { color: #FFFFFF; text-decoration:none;}

I see in my IE internet options one has "Underline links" always ,
hover, never. (always is selected)

does any one know what the default is or should be set at, i just want
to hide text-decoration in some of the pages I create. I am sure I never
had this problem before with the text-decoration.

what should I do to be able to control this


regards

Kenny












Reply With Quote
  #4  
Old   
twocans
 
Posts: n/a

Default Re: text-decoration:none; - 11-02-2005 , 10:24 AM



Wowa,
I got out of the wrong side of the bed this morning, thanks for that, the
easiest things can be the easieest over looked.

regards

Kenny




"robot88888888" <a@a.com> wrote

Quote:
It's most likely because the links become visited links, you'll need
another rule:
#rightcontent a:visited {color: #000099; text-decoration:none;}

You could also try changing all the link states:
#rightcontent a {text-decoration:none;}


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote in message
news:dkaim6$dt0$1 (AT) forums (DOT) macromedia.com...
http://www.camcaller.com/z.html

Thanks Murray




"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote in message
news:dkahqo$cn0$1 (AT) forums (DOT) macromedia.com...
I am set at Underline Links - Always.

Can you link me to the page?

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


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote in message
news:dkagdk$apk$1 (AT) forums (DOT) macromedia.com...
Hi yea , I have a div that is using the css below. the links come out
undelined in IE not in firefox. I have sepent a few hours trying to
figure what I have been doing wrong.

#rightcontent a:link {color: #000099; text-decoration:none;}
#rightcontent a:hover { color: #FFFFFF; text-decoration:none;}

I see in my IE internet options one has "Underline links" always ,
hover, never. (always is selected)

does any one know what the default is or should be set at, i just want
to hide text-decoration in some of the pages I create. I am sure I
never had this problem before with the text-decoration.

what should I do to be able to control this


regards

Kenny














Reply With Quote
  #5  
Old   
robot88888888
 
Posts: n/a

Default Re: text-decoration:none; - 11-02-2005 , 01:47 PM



No problem


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote

Quote:
Wowa,
I got out of the wrong side of the bed this morning, thanks for that, the
easiest things can be the easieest over looked.

regards

Kenny




"robot88888888" <a@a.com> wrote in message
news:dkalc8$hs4$1 (AT) forums (DOT) macromedia.com...
It's most likely because the links become visited links, you'll need
another rule:
#rightcontent a:visited {color: #000099; text-decoration:none;}

You could also try changing all the link states:
#rightcontent a {text-decoration:none;}


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote in message
news:dkaim6$dt0$1 (AT) forums (DOT) macromedia.com...
http://www.camcaller.com/z.html

Thanks Murray




"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote in message
news:dkahqo$cn0$1 (AT) forums (DOT) macromedia.com...
I am set at Underline Links - Always.

Can you link me to the page?

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


"twocans" <a (AT) SelfBeatingStickForSale (DOT) com> wrote in message
news:dkagdk$apk$1 (AT) forums (DOT) macromedia.com...
Hi yea , I have a div that is using the css below. the links come out
undelined in IE not in firefox. I have sepent a few hours trying to
figure what I have been doing wrong.

#rightcontent a:link {color: #000099; text-decoration:none;}
#rightcontent a:hover { color: #FFFFFF; text-decoration:none;}

I see in my IE internet options one has "Underline links" always ,
hover, never. (always is selected)

does any one know what the default is or should be set at, i just want
to hide text-decoration in some of the pages I create. I am sure I
never had this problem before with the text-decoration.

what should I do to be able to control this


regards

Kenny
















Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.