Example CSS file Add the following in the Head section of your web page <link href="default.css" rel="stylesheet" type="text/css" /> do necessary modification save the code below in a file name default.css and see the result *{ margin: 0; padding: 0; } body { margin: 20px 0; background: #FFFFFF; font: normal 13px Arial, Helvetica, sans-serif; color: #666666; } a { color: #29A3E1; } a:hover { text-decoration: none; color: #E16629; } /* Boxed */ .title { background: url(images/img4.gif) no-repeat right center; border-bottom: 3px solid #CFCFCF; } .boxed1 .title { font: bold 100% "Trebuchet MS", Arial, Helvetica, sans-serif; } .boxed1 .content { background: url(images/img05.gif) no-repeat left bottom; padding: 20px; } .boxed2 .title { font: normal 182% "Trebuchet MS", Arial, Helvetica, sans-serif; } .boxed2 .content { background: url(images/img06.gif) repeat-x left bottom; ...