PC Review


Reply
Thread Tools Rate Thread

Bookmark display

 
 
Craig Schiller
Guest
Posts: n/a
 
      8th Oct 2004
Hi, all -

I have a page of FAQs on my website, where the topics at the top of the
page are links to bookmarks of discussions of those items lower in the
page. In other words. links at top, discussion below.

The links at top are configured to change color and change to small caps
when hovered over.

In IE, everything works as it should. In Netscape 7, however, the target
bookmarks also change color and change to small caps when hovered over,
which, since they are not links, they shouldn't do, and of course is
confusing.

How do I prevent this behavior in Netscape?

URL is www.theschillergroup.com/faqs.htm

TIA for any suggestions.

Craig

 
Reply With Quote
 
 
 
 
Ronx
Guest
Posts: n/a
 
      8th Oct 2004
I am guessing here that you have a style set up similar to
<style>
a:hover {text-transform:capitalize;}
</style>

The above might affect all anchors, whether they are links or bookmarks.

One solution is to place the links in a <div> and change the style sheet to
refer to the div.
<style>
#faq a:hover {text-transform:capitalize;}
</style>


<div id=faq>
links to bookmarks
</div>
--
Ron

Reply only to group - emails will be deleted unread.


"Craig Schiller" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi, all -
>
> I have a page of FAQs on my website, where the topics at the top of the
> page are links to bookmarks of discussions of those items lower in the
> page. In other words. links at top, discussion below.
>
> The links at top are configured to change color and change to small caps
> when hovered over.
>
> In IE, everything works as it should. In Netscape 7, however, the target
> bookmarks also change color and change to small caps when hovered over,
> which, since they are not links, they shouldn't do, and of course is
> confusing.
>
> How do I prevent this behavior in Netscape?
>
> URL is www.theschillergroup.com/faqs.htm
>
> TIA for any suggestions.
>
> Craig
>



 
Reply With Quote
 
Craig Schiller
Guest
Posts: n/a
 
      9th Oct 2004
Ronx -

Thanks for your reply.

Actually, the code in the page is:

<style fprolloverstyle>A:hover {color: #FF0000; font-variant: small-caps;
font-weight: bold}
</style>

The question is why is Netscape parsing this incorrectly (applying the effect
to a bookmark) while IE parses it correctly (does not apply the effect to a
bookmark). Or, really, more importantly. how to defeat this behavior in
Netscape.

TIA,
Craig



Ronx wrote:

> I am guessing here that you have a style set up similar to
> <style>
> a:hover {text-transform:capitalize;}
> </style>
>
> The above might affect all anchors, whether they are links or bookmarks.
>
> One solution is to place the links in a <div> and change the style sheet to
> refer to the div.
> <style>
> #faq a:hover {text-transform:capitalize;}
> </style>
>
> <div id=faq>
> links to bookmarks
> </div>
> --
> Ron
>
> Reply only to group - emails will be deleted unread.
>
> "Craig Schiller" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Hi, all -
> >
> > I have a page of FAQs on my website, where the topics at the top of the
> > page are links to bookmarks of discussions of those items lower in the
> > page. In other words. links at top, discussion below.
> >
> > The links at top are configured to change color and change to small caps
> > when hovered over.
> >
> > In IE, everything works as it should. In Netscape 7, however, the target
> > bookmarks also change color and change to small caps when hovered over,
> > which, since they are not links, they shouldn't do, and of course is
> > confusing.
> >
> > How do I prevent this behavior in Netscape?
> >
> > URL is www.theschillergroup.com/faqs.htm
> >
> > TIA for any suggestions.
> >
> > Craig
> >


 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      9th Oct 2004
The A:hover pseudo element is not officially defined, so is open to
interpretation by different browsers (see
http://www.w3.org/TR/CSS1#anchor-pseudo-classes)

My solution, wrapping the links in a <div> and amending the style sheet as
described below, should resolve the problem on *this page, on other pages a
<span> might be more appropriate.

I generally bookmark borderless images or use empty bookmarks, example: <a
name="ex"></a> which are not recommended since they allegedly fail in some
browsers (I have yet to find a browser they fail in - though I have not
tested any Apple-Macs.) These bookmarks do not display any hover
characteristics at all.

--
Ron

Reply only to group - emails will be deleted unread.


"Craig Schiller" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Ronx -
>
> Thanks for your reply.
>
> Actually, the code in the page is:
>
> <style fprolloverstyle>A:hover {color: #FF0000; font-variant: small-caps;
> font-weight: bold}
> </style>
>
> The question is why is Netscape parsing this incorrectly (applying the
> effect
> to a bookmark) while IE parses it correctly (does not apply the effect to
> a
> bookmark). Or, really, more importantly. how to defeat this behavior in
> Netscape.
>
> TIA,
> Craig
>
>
>
> Ronx wrote:
>
>> I am guessing here that you have a style set up similar to
>> <style>
>> a:hover {text-transform:capitalize;}
>> </style>
>>
>> The above might affect all anchors, whether they are links or bookmarks.
>>
>> One solution is to place the links in a <div> and change the style sheet
>> to
>> refer to the div.
>> <style>
>> #faq a:hover {text-transform:capitalize;}
>> </style>
>>
>> <div id=faq>
>> links to bookmarks
>> </div>
>> --
>> Ron
>>
>> Reply only to group - emails will be deleted unread.
>>
>> "Craig Schiller" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > Hi, all -
>> >
>> > I have a page of FAQs on my website, where the topics at the top of the
>> > page are links to bookmarks of discussions of those items lower in the
>> > page. In other words. links at top, discussion below.
>> >
>> > The links at top are configured to change color and change to small
>> > caps
>> > when hovered over.
>> >
>> > In IE, everything works as it should. In Netscape 7, however, the
>> > target
>> > bookmarks also change color and change to small caps when hovered over,
>> > which, since they are not links, they shouldn't do, and of course is
>> > confusing.
>> >
>> > How do I prevent this behavior in Netscape?
>> >
>> > URL is www.theschillergroup.com/faqs.htm
>> >
>> > TIA for any suggestions.
>> >
>> > Craig
>> >

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to get a link to a bookmark to display the text at the top? WGS Microsoft Word Document Management 1 12th May 2008 11:24 AM
link from outlook to word bookmark opens doc but not at bookmark JOH Microsoft Outlook 1 2nd May 2008 03:58 AM
Bookmark page rather than bookmark site =?Utf-8?B?RG91ZyBTdGV3YXJ0?= Microsoft Frontpage 7 4th Mar 2007 05:00 PM
Using Bookmark to display record KLR Microsoft Access Forms 2 27th Jan 2006 10:43 AM
Includetext field does not display form field bookmark =?Utf-8?B?VHJ1ZGll?= Microsoft Word Document Management 0 10th Nov 2005 02:02 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:24 AM.