You are not logged in.
Pages: 1
I really love this technique to generate rounded corners without images:
http://www.html.it/articoli/nifty/
...anyway i've tried to put it in pluck (any theme) without success.
Can someone help me ?
Thanks in advice !
Offline
Make test page and give us link. Then we can try to help you find what you are doing wrong.
A_Bach
Offline
Use CSS3:
http://css3generator.com/
And choose Border Radius
Then copy and paste the code in your CSS.
For example.
CSS:
#box1 {
width:368px;
height:327px;
border:2px solid #00C;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}HTML:
<div id="box1"></div>It wil only work in the latest browsers.
Offline
OK, i've applied NC into a customized ZenLike theme:
http://www.forart.it/progetti/RETeD/
I'll try CSS3, thanks.
Offline
Pages: 1