Elegance 1.1 Changelog January 30, 2007 ********************************************************** The following changes made to styles_elegance.css: ______________________________________ To eliminate general inconsistencies between browsers: Old (lines 18 - 21): * { margin:0; padding:0; } New: form { margin:0; padding:0; } ______________________________________ To get rid of the white border that appears around the layout table in IE6 only: Old (lines 46 - 49): #layout-table { margin: 0; padding: none !important; } New: #layout-table { margin: 0; padding: none !important; border-collapse: collapse; } ______________________________________ To get rid of gap that appears between content and footer in IE6 only: Old (lines 217 - 231): #footer { height: 118px; margin: 0 !important; padding: 0; background: url(pix/bg/bg_footer_left.png) no-repeat bottom left; } #footer-wrap-1 { background: url(pix/bg/bg_footer_gradient.png) repeat-x bottom; } #footer-wrap-2 { background: url(pix/bg/bg_footer_right.png) no-repeat bottom right; } New: #footer { height: 118px; margin: 0 !important; padding: 0; background: url(pix/bg/bg_footer_left.png) no-repeat top left; } #footer-wrap-1 { background: url(pix/bg/bg_footer_gradient.png) repeat-x top; } #footer-wrap-2 { background: url(pix/bg/bg_footer_right.png) no-repeat top right; } _________________________________________ To fix the alignment of the login block form hack in IE6 only: Old (lines 394 - 399): .block_login .loginform .c1 { float: left; color: #fff; font-weight: bold; margin:4px; } New: .block_login .loginform .c1 { float: left; color: #fff; font-weight: bold; margin:4px 3px 4px; } ___________________________________________ To remove the blue background that briefly appears behind forum posts during loading: Old (lines 461 - 468): .forumpost .content, .eventlist .description { background: #d6ecf5 url(pix/forum/bg_forum_bottom_right.png) repeat-y bottom right; padding: 2px 15px 10px 5px; font-size: 0.9em; color: #444444; line-height: 1.4em; } New: .forumpost .content, .eventlist .description { background: url(pix/forum/bg_forum_bottom_right.png) repeat-y bottom right; padding: 2px 15px 10px 5px; font-size: 0.9em; color: #444444; line-height: 1.4em; } ********************************************************** The following changes should be made to styles_0X (where 0X = the variant of your theme: _______________________________ To fix visited link colors in IE6: The CSS under "Header" (line 55) should be replaced with the following: #header-box h2, #header-box a:link, #header-box a:visited, #footer .logininfo a:link, #footer .logininfo a:visited, #footer .helplink a:link, #footer .helplink a:visited, .breadcrumb ul li a:link, .breadcrumb ul li a:visited { color: [keep original hex value]; } ________________________________