This is Interesting: Free Magazines for Graphics designers and webmasters  


Home > Archive > Dreamweaver > August 2004 > Help with CSS!





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Help with CSS!
ana

2004-08-06, 7:15 pm

Hi all!

I'm making this news website, and in each page i have two CSS: one for the
text and other for the footer...
in both i determined a:link, a:visited and a:hover

The website is temporarily in http://www.coresaocubo.pt/teste/html/08.html
although i attached to different cells, different CSS styles, it only
assumes a:link, a:visited and a:hover from one of them.... why is this
happening, any ideas?

what am i doing wrong? :(

thx for any input,

Ana

ps. here is the code for both the CSS:

--------------------------------------------------------
..texto {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
text-align: left;
vertical-align: top;
}
a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: normal;
color: #FF9900;
text-decoration: underline;
}
a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: normal;
color: #FF9900;
text-decoration: underline;
}
a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #666666;
text-decoration: underline;
}

-----------------------------------------------------

..footer {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
text-align: left;
vertical-align: top;
}
a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight: normal;
color: #666666;
text-decoration: none;
}
a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight: normal;
color: #666666;
text-decoration: none;
}
a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight: normal;
color: #666666;
text-decoration: underline;
}


Al Sparber- PVII

2004-08-06, 7:15 pm

ana wrote:
> Hi all!
>
> I'm making this news website, and in each page i have two CSS: one
> for the text and other for the footer...
> in both i determined a:link, a:visited and a:hover
>
> The website is temporarily in
> http://www.coresaocubo.pt/teste/html/08.html although i attached to
> different cells, different CSS styles, it only assumes a:link,
> a:visited and a:hover from one of them.... why is this happening, any
> ideas?
>
> what am i doing wrong? :(
>
> thx for any input,


Lance's answer pretty-much covers you, but if you are unclear about how
to implement, then this tutorial should help you:
http://www.projectseven.com/tutoria...asses/index.htm


--
Al Sparber - PVII
http://www.projectseven.com
DW Extensions - Menu Systems - Tutorials - CSS FastPacks
---------------------------------------------------------
Webdev Newsgroup: news://forums.projectseven.com/pviiwebdev/
CSS Newsgroup: news://forums.projectseven.com/css/
RSS/XML Feeds: http://www.projectseven.com/xml/




Murray *TMM*

2004-08-06, 7:15 pm

Pseudo-classes and container styles are what you need - here are some
tutorials.
http://www.mako4css.com
http://www.thepattysite.com/linkstyles1.cfm
http://www.projectseven.com/tutoria...asses/index.htm

--
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
==================

"ana" <anabreu@coresaocubo.pt> wrote in message
news:cf0ghm$1i4$1@forums.macromedia.com...
> Hi all!
>
> I'm making this news website, and in each page i have two CSS: one for the
> text and other for the footer...
> in both i determined a:link, a:visited and a:hover
>
> The website is temporarily in http://www.coresaocubo.pt/teste/html/08.html
> although i attached to different cells, different CSS styles, it only
> assumes a:link, a:visited and a:hover from one of them.... why is this
> happening, any ideas?
>
> what am i doing wrong? :(
>
> thx for any input,
>
> Ana
>
> ps. here is the code for both the CSS:
>
> --------------------------------------------------------
> .texto {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 10px;
> font-style: normal;
> font-weight: normal;
> color: #666666;
> text-decoration: none;
> text-align: left;
> vertical-align: top;
> }
> a:link {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 10px;
> font-weight: normal;
> color: #FF9900;
> text-decoration: underline;
> }
> a:visited {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 10px;
> font-weight: normal;
> color: #FF9900;
> text-decoration: underline;
> }
> a:hover {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 10px;
> font-weight: bold;
> color: #666666;
> text-decoration: underline;
> }
>
> -----------------------------------------------------
>
> .footer {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 9px;
> font-style: normal;
> font-weight: normal;
> color: #666666;
> text-decoration: none;
> text-align: left;
> vertical-align: top;
> }
> a:link {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 9px;
> font-weight: normal;
> color: #666666;
> text-decoration: none;
> }
> a:visited {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 9px;
> font-weight: normal;
> color: #666666;
> text-decoration: none;
> }
> a:hover {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 9px;
> font-weight: normal;
> color: #666666;
> text-decoration: underline;
> }
>
>



ana

2004-08-06, 7:15 pm

Hi again...

i see i have to spend a few time with this issue... thought it would be
easier :( *snif*

i'll tell you later if i could solve this prblm..

thx all for the quick answer!

ana


Murray *TMM*

2004-08-06, 7:15 pm

Bad news - this is teh easy part! 8)

--
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
==================

"ana" <anabreu@coresaocubo.pt> wrote in message
news:cf0hrg$2uu$1@forums.macromedia.com...
> Hi again...
>
> i see i have to spend a few time with this issue... thought it would be
> easier :( *snif*
>
> i'll tell you later if i could solve this prblm..
>
> thx all for the quick answer!
>
> ana
>
>



Murray *TMM*

2004-08-06, 7:15 pm

Shuddup!

--
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
==================

"Mad Dog" <md@mdp.com> wrote in message
news:cf0i4g$3b4$1@forums.macromedia.com...
> Al beat you by three minutes. Sheesh!
>
>
> Murray *TMM* wrote:
>
>



Murray *TMM*

2004-08-06, 7:15 pm

Xref: kermit macromedia.dreamweaver:946706

<obsequious>I humbly apologize to darrel</obsequious>

--
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
==================

"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:cf0idu$3ie$1@forums.macromedia.com...
> Shuddup!
>
> --
> 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
> ==================
>
> "Mad Dog" <md@mdp.com> wrote in message
> news:cf0i4g$3b4$1@forums.macromedia.com...
>
>



Mad Dog

2004-08-06, 7:15 pm

zzzzzzzziiiiiiip!


Murray *TMM* wrote:[color=darkred]
> Shuddup!
>
>
> "Mad Dog" <md@mdp.com> wrote in message
> news:cf0i4g$3b4$1@forums.macromedia.com...


Mad Dog

2004-08-06, 7:15 pm

Al beat you by three minutes. Sheesh!


Murray *TMM* wrote:[color=darkred]
> Pseudo-classes and container styles are what you need - here are some
> tutorials.
> http://www.mako4css.com
> http://www.thepattysite.com/linkstyles1.cfm
> http://www.projectseven.com/tutoria...asses/index.htm
>
>
> "ana" <anabreu@coresaocubo.pt> wrote in message
> news:cf0ghm$1i4$1@forums.macromedia.com...


ana

2004-08-06, 7:15 pm

aaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh

ur bad!


ana

2004-08-06, 7:15 pm

Hi Lance!

you deserve a a prize! for the simplest answer, that worked :)

thx a bunch!

Ana


Sponsored Links


Copyright 2003 - 2008 forum4designers.com  Software forum  Computer Hardware reviews