I am currently having trouble adding a border & border-radius onto my layout. I've tried a bunch of different things, but can't get it to work. Please help me. I will provide the HTML & CSS source code below.HTML:\[code\]<div class="colmask fullpage"> <div class="col1"> <!-- Column 1 start --> ...content goes here... <!-- Column 1 end --> </div></div>\[/code\]CSS:\[code\]/* column container */.colmask { position: relative; /* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */ clear: both; float: left; width: 100%; /* width of whole page */ overflow: hidden; /* This chops off any overhanging divs */}/* 1 column full page settings */.fullpage { background: #fff;}.fullpage .col1 { margin: 0 1em;}\[/code\]