[css-d] x-tra padding and squished graphic

2008-10-07 Thread [EMAIL PROTECTED]
Hi!

In IE7, this page: http://www.blackfootchallenge.org/rebeccatest/test3.html
shows about an extra 10 px padding to the right of the Accomplishments
sidebar on the right of the page.

Also, the icon of the blue wave in the box where it says SUBSCRIBE Stay
Informed on the left is squished vertically.

Any ideas on how to fix these issues?

Thanks very much.

-Rebecca


mail2web.com – Enhanced email for the mobile individual based on Microsoft®
Exchange - http://link.mail2web.com/Personal/EnhancedEmail


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] x-tra padding and squished graphic

2008-10-07 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote:

 In IE7, this page:
 http://www.blackfootchallenge.org/rebeccatest/test3.html shows about
 an extra 10 px padding to the right of the Accomplishments sidebar
 on the right of the page.

Will look much better if you delete this...

#righttable {
padding-left: 0;
width: 190px;
}

...in the 'ie_test2.css' stylesheet.

Deleting the entire ie-only stylesheet will also work for that page,
but maybe you need some of it for other pages.

 Also, the icon of the blue wave in the box where it says SUBSCRIBE
 Stay Informed on the left is squished vertically.

You can add...

#onlinegiving img {
position: relative;
}

...to make the overflowing part of the image visible, which will make it
look alright in IE7.

Also a good idea to check validity...

http://validator.w3.org/check?uri=http://www.blackfootchallenge.org/rebeccatest/test3.html

...and fix the really serious errors - like the ID that is used more
than once.

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/