Link Styles Not Working
  Home FAQ Contact Sign in
macromedia.dreamweaver only
 
Advanced search
POPULAR GROUPS

more...

macromedia.dreamweaver Profile…
 Up
Link Styles Not Working         


Author: Tarvardian
Date: Nov 29, 2007 22:35

Can someone take a look at this page and help me figure out why some of my
link styles aren't working on this page:
http://catenion.thelegatogroup.com/nav_test.htm

Specifically, I can't get the "#navlist a: link" style to display for the
secondary navigation just below banner graphic. What displays is the
browser's blue default style, and I can't figure out why.

Any help is appreciated.

Thanks,
John
5 Comments
Re: Link Styles Not Working         


Author: Michael Fesser
Date: Nov 29, 2007 22:55

.oO(Tarvardian)
>Can someone take a look at this page and help me figure out why some of my
>link styles aren't working on this page:
>http://catenion.thelegatogroup.com/nav_test.htm
>
>Specifically, I can't get the "#navlist a: link" style to display for the
>secondary navigation just below banner graphic. What displays is the
>browser's blue default style, and I can't figure out why.

The DOM Inspector in Firefox shows that there are no CSS rules defined
for the links in that nav bar.

Micha
no comments
Re: Link Styles Not Working         


Author: Alec Fehl
Date: Nov 29, 2007 22:57

You have spaces in your selectors, rendering them invalid. You have this:
#navlist a: link, #navlist a: visited

Should be this:
#navlist a:link, #navlist a:visited

--
Alec
Adobe Community Expert
no comments
Re: Link Styles Not Working         


Author: Joe Makowiec
Date: Nov 29, 2007 23:06

On 29 Nov 2007 in macromedia.dreamweaver, Tarvardian wrote:
> Specifically, I can't get the "#navlist a: link" style to display
> for the secondary navigation just below banner graphic. What
> displays is the browser's blue default style, and I can't figure out
> why.

#navlist a: link, #navlist a: visited {

Remove the spaces:

#navlist a:link, #navlist a:visited {

no comments
Re: Link Styles Not Working         


Author: Tarvardian
Date: Nov 29, 2007 23:03

Thanks, Alec. Do you know how many times I went over those styles? How
aggravating to miss something so obvious!

John

"Alec Fehl" hotmail.com> wrote in message
news:finck3$s3t$1@forums.macromedia.com...
> You have spaces in your selectors, rendering them invalid. You have this:
> #navlist a: link, #navlist a: visited
>
> Should be this:
> #navlist a:link, #navlist a:visited
>
> --
> Alec
> Adobe Community Expert
no comments
Re: Link Styles Not Working         


Author: Tarvardian
Date: Nov 29, 2007 23:05

Thanks, Joe.

John
Show full article (0.62Kb)
no comments