If you like to have round corners for all boxes without touching the default wrapper just modify the 'General CSS Properties' -> .t_outer with this code:

Code
border-top: 5px solid #1F4584;
border-bottom: 5px solid #1F4584;
border-right: 1px solid #1F4584;
border-left: 1px solid #1F4584;
border-radius: 5px;
border-collapse: separate;
margin-top: 5px;
margin-bottom: 5px;
background: #1F4584;
width:100%;
Description:
border-top: 5px solid #1F4584; create a 5 pixel line on top of each box, set your own color
border-bottom: 5px solid #1F4584; create a 5 pixel line on bottom of each box, set your own color
border-right: 1px solid #1F4584; optional create a 1 pixel line to the right with your own color
border-left: 1px solid #1F4584; optional create a 1 pixel line to the left with your own color
border-radius: 5px; round all 4 corners with a 5 pixel radius
border-collapse: separate; must be set! in the default css somewhere collapse is set and this prevent round corners
margin-top: 5px; distance between 2 boxes
margin-bottom: 5px; distance between 2 boxes
background: #1F4584; set your color as you like
width:100%; use the whole width

This work in all browsers who can read CSS Level3.

Have Fun
Zarzal


my board: http://www.dragonclan-forum.de
my hobby: http://www.biker-reise.de
Ich kann bei Fragen zu UBBthreads in Deutsch weiterhelfen oder es zumindest versuchen