PDA

View Full Version : Set defaults for hyperlink borders?


yosh
06-11-2006, 07:22 AM
Hi,

Something is really frustrating me. Every time I set an image to be a hyperlink, it gives it a blue border which I have to go and disable in the picture properties.

So, I've got 12 images over my page which all need linking, you can imagine how tedious it gets having to change each one...

I am wondering if there is a way to set Frontpage to not set borders at all when a hyperlink is made? I have done it before but I can't remember how :(

Thanks for your help,

-yosh

onlyme
06-11-2006, 07:34 AM
hello,
which version FrontPage do you have?

yosh
06-11-2006, 07:42 AM
hi,

I am using frontpage 2003

MandyJay
06-11-2006, 07:42 AM
In my versions of FP2002 and FP2003 when I insert an image, FP automatically inserts the code of border="0" ......

However if yours does not, then add the following CSS into your Head tags

<style>
<!--
img {
border: none;
}
-->
</style>

or add this to an external style sheet

img {
border: none;
}


Hope that helps
MJ

yosh
06-11-2006, 10:19 PM
thanks, I will try that