On 2/25/07, Martha H. Bowes, CLTC <[EMAIL PROTECTED]> wrote:
>
> Same website, new question. I have three logos that also serve as
> links below my left-hand menu. In Safari 2.0.4 they look normal. In
> IE 7.0.5370.11 they have blue borders, I guess to indicate they are a
> link. But those borders are ugly. Can I remove them and still keep
> the link functionality in IE?
>
> http://www.bowesltc.com
>
> Also, can I easily code this sites content is centered in someone's
> browser window instead of flush left?
>
> TIA, Martha



Hi Martha,

Borders on images is browser specific. I like to have a rule that gets rid
of borders and margin and padding on all elements. Then I know where I
stand.

*
{
border: 0;
margin: 0;
padding: 0;
}

If you don't want to do that you can use
img
{
border: 0;
}

If you add the rule align="center" to your holding table it will centre it.
It would be better to give the table an id or class and put this in a CSS
file though.

Cheers
George

www.shapeshed.com | Web and Graphic Design

p.s. You have got some validation errors in there. Head over to
http://validator.w3.org/ and fix them. Also you could really accomplish your
layout with CSS rather than tables.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to