STYLE SHEETS

  • Thread starter Thread starter jeff
  • Start date Start date
J

jeff

I have attached a style sheet to all pages of my web, and
it's weird. I have the effect of the underline when I
hover, but it only just now started working on only my
recent links and on one page only.

On the same page that it works, I have links that do not
reflect that same effect? I did, for kicks, recaculate
hyperlinks, no change.

Any idea what's going on here?

Thanks, Jeff
 
Do the links that don't "behave" properly
have inline styles applied??
An inline style overrides a style sheet.

hth
 
post a link to the page in question. I'd find it soothing to fix an "easy"
style problem. ;-)
 
Here's a link. Cancel the password request, it was a
protected page before I moved it to make a link. The text
links still show, and you'll see that the download and
listen link PLUS, the bottome page links, which is an
include page, don't show the style on rollover.

I have the include page linked to the same style. One
note...any new links I add seem to use the style. I'd
haet to go back to do every link again to give it the
style, ya know?

Thanks.

http://www.microdose.com/style_test.htm

Jeff
 
you've got a lot of inline styles and font tags that will get in the way of
your externally linked sheet:
<p align="center"><font size="2">
<a href="enroll.htm"><span style="text-decoration: none">Enroll
Now</span></a> |
<a href="mailto:[email protected]?subject=Please Call Me!">
<span style="text-decoration: none">Request a Call</span></a> |
<a href="mailto:[email protected]?subject=I'm referring a friend!">
<span style="text-decoration: none">Refer a Friend</span></a> | <font
color="#0000FF">
<a href="members/index.htm" style="text-decoration:
none">Members</a></font>
|
<a href="physician.htm">
<span style="text-decoration: none">Physician Comments</span></a> |
<a href="http://www.helenfoundation.org"><span style="text-decoration:
none">
Helen
Foundation</span></a> | <a href="contact.htm">
<span style="text-decoration: none">Contact Us</span></a></font></p>
you'll have to go through the page and get rid of all that stuff for your
style sheet to work consistently.
I think the reason you're new links are working ok is because there is no
inline style applied to them.
HTH
 
The links that don't show the underline all have
an inline style like this:
..<a style="text-decoration: none" href="members/audio/MICRODOSE.mp3">
<span style="font-weight: 700">Download &amp; Listen</span>

The inline styles "must" be removed for the
style sheet to work, so that they look like this.
..<a href="members/audio/MICRODOSE.mp3">
<span style="font-weight: 700">Download &amp; Listen</span>
 
I'll check and do what you both said. Sounds like the
same resolution, so thanks for your time! I ahve to head
out to work, but will do later.

THANKS AGAIN!

Jeff
 
Back
Top