Give the container for your left border a class name
then change the style declaration by adding the class_name.
then only the links in the container with that class_name will be bold when hovered.
<style type="text/css">
..class_name a:hover {
font-weight: bold;
</style>
--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
"rocknroj" <(E-Mail Removed)> wrote in message
news:A242BD19-8AE6-4ACC-94AC-(E-Mail Removed)...
> How do I apply a style to my left margin only?
>
> I put an in-line style code for my left menu bar in the borders/left.htm.
>
> Works great but can I turn-off the style, as all my links now show as bold
> on my pages, not just in the left border.. Seems to only affect pages that
> have the left border navigation.
>
> <style type="text/css">
> a:hover {
> font-weight: bold;
>
> }
> </style>