Re: Results Pages
hi PengHead,
It appears your rounded corners are affecting your layout. The offending css appears to be this in your skin1/skin1.css file (and locate the class .xrounded)...
.xrounded {
background: transparent;
width:100%; /*Adjust the width here*/
float:left;
margin:0 0 15px 0;
line-height:125%;
}
Removing the float:left; might help so it ends up like this...
.xrounded {
background: transparent;
width:100%; /*Adjust the width here*/
margin:0 0 15px 0;
line-height:125%;
}
Hope this helps.
__________________
Doms
kube v4.1.9
|