Im trying to clean up the site and make it look not so boring.
I want to change my side boxes, like the wrappers and such.
For instance, instead of them being like a box and with a black border, id like to make them rounded.
Here's a link to what I'm trying to accomplish.
[url=“http://www.hmb-guzzi.de/shop/index.php?language=en&XTCsid=h9mdprtsi1me9r1f6bnallvhr8lf15in”]http://www.hmb-guzzi.de/shop/index.php?language=en&XTCsid=h9mdprtsi1me9r1f6bnallvhr8lf15in[/url]
I know this cant be hard to do, i just don't know how to unfortunately.
Any tips would be appreciated.
–
Nevermind just checked your site. Simply edit your local_styles.css file line 76
where .mainbox-container is. add
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
[quote name='solesurvivor' timestamp='1325804962' post='128944'] Nevermind just checked your site. Simply edit your local_styles.css file line 76 where .mainbox-container is. add -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px;
[/quote]
I attempted to do this and it didnt work…
I copied that code you gave me right where ya told me too
Well… you may not have done it correctly then. Try this. Open your local_styles.css and
REPLACE THIS:
.mainbox-container {
border: 2px solid #8d8d8d;
}
WITH THIS:
.mainbox-container {
border: 2px solid #8d8d8d;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
}
This is awesome, worked out perfectly! The site should load faster with just css based and not having to edit images…yay! Thanks sole