Martha H. Bowes, CLTC wrote:
> [...] 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?

The addition of...

/* center page */
body {text-align: center;}
table {margin: 0 auto; text-align: left;}

/* space those list-items */
td ul li {margin-bottom: 1.1em;}

/* remove borders on link-images */
img {border: none;}

...covers all browsers from IE5/win up to the very latest.

Remove those <br> in that list, and all browsers will space those
list-items pretty identical. Adjust that 'margin-bottom' to taste.
You can of course add...

/* make breaks take up no height */
br {line-height: 0;}

...to prevent those <br>s acting as spacers in some browsers, but
they're still misplaced in between list-items.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
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