View Single Post
  #94  
Old 11-15-2008, 08:36 AM
 
Rob_D Rob_D is offline
 

Advanced Member
  
Join Date: Mar 2008
Posts: 62
 

Default Re: Pure CSS Rounded Boxes! (no images, no tables)

Quote:
i still need to find the area in the code to get the right side boxes to not be cutoff in i.e. (i'm sure this is a simple fix, just haven't attacked it yet).

I had the same problem, and I had a friend help me fix it. I think this is the code he changed:

From this:

.xrounded {
background: transparent;
width:100%; /*Adjust the width here*/
float:left;
margin:0 0 15px 0;
line-height:125%;

To this:

.xrounded {
background: transparent;
width:100%; /*Adjust the width here*/
float:inherit;
margin:0 0 15px 0;
line-height:125%;

Try that, and if it does not work, I will see if I can see another change he made.

Rob
__________________
4.1.11
Rob Dolliver

www.jessicasonline.com
Xcart Skin - Fashion Mosaic
X-Cart 4 Level Horizonal Flyout Menus
alteredCart One Page Checkout
alteredCart Buy Together
CDSEO
Reply With Quote