Amy Ostrom wrote:
> http://www.kcscienceinc.org/
> 
> 1.  The images under the links shouldn't have the borders or 
> additional padding *sigh*.  Simple, I know, but I can't find it. This
> happens in both IE and Firefox

I would've liked to use those W3C validators, but they can't get
anything out of your document at the moment.

Also, too many styles that don't do much and some that don't target the
right elements.

Correct selector so it reads...

#ads a:link {border: none;}

(note the 'a:link' part)

...and add...

#ads img {display: block;}

...for good measure.

Delete whatever else that isn't needed in your styles.

> 2.  The contact information in the footer moves over and pushed the 
> background image "out of the box".  This happens in IE (looks great 
> in Firefox!)

Suggest you change your positioning method...

#contact {
        /* position:absolute; <-- delete this */
        /* width:98%; <-- delete this */
        margin: 0 auto -4em auto /* observe change */;
/* keep the rest as is */
}

...and it shouldn't be too far off in any browser.

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