On Sat, 28 Oct 2006 19:43:26 -0400, Linda Quinn wrote:
> Thanks for your feedback. Typo in the link address. Should read
> www.lifeonwheels.com/beta2/index5.htm. Please take a look and maybe you
> can see if it looks like your idea will work. 
>
Hello again Linda,

To get rid of unwanted borders and bottom gaps in images, add this rule 
to your all_pages.css:

 img {
        vertical-align: bottom;
        border: 0 none;
 }

To get hover action to work in IE, it needs extra help to make it react. 
The example code below uses 'float: none;'  - Try this:

 #sponsorimages a img {
        border: 3px solid #fff;
 }
 #sponsorimages a:hover {
        float: none;
 }
 #sponsorimages a:hover img {
        border: 3px solid #009;
 }

Cordially,
David
--
www.hucklesby.com




______________________________________________________________________
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