Thread: Results Pages
View Single Post
  #2  
Old 03-30-2008, 04:21 PM
  kube's Avatar 
kube kube is offline
 

X-Adept
  
Join Date: Sep 2005
Location: London: a small place East of Wales
Posts: 529
 

Default 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
Reply With Quote