As this class is probably applied to other things in your cod you have painted yourself in a corner here, w/o seeing all your code...I would suggest adding an ID. this is kinda heavy handed , but it will make sure we override that code for those specific elements.
1) so lets say #mainWrap, and #brandHed
2)
Code:
#mainWrap, #brandHed {overflow:visible; display:inline-block;padding:0; margin:0 }
#mainWrap{width:100%; text-align:middle}
#mainWrap div{ text-align:left}
If you do have padding then use use this instead
Code:
#mainWrap, #brandHed {overflow:visible;
zoom:expression(
runtimeStyle.zoom=1,
insertAdjacentHTML('beforeEnd','<span class="after"></span>')
);
}
#mainWrap:after, #brandHed:after,#mainWrap .after, #brandHed .after {display:block; clear:both; content:""; height: 0;visibility: hidden;}
if we have targeted the right elements that should fix it.
hope that helps.
Bookmarks