Today I added some additional design elements to the home and services pages. A before and after image of the home page is displayed above. By now this technique of creating the folder style graphics in css has been used on through out the web using a variety of techniques.
The technique I used in creating the header elements involved creating the rounded sections in Photoshop and positioning them before and after the header tag. Then using a style in the header tag I added the background color used in the rounded corners and added the additional margin style to the header tag to shrink the background area to the edge of the right corner graphic.
Below is a sample of my code used creating the header tabs on the home page.
<h2 style="color:#0066FF; margin-left:15px; margin-right:118px; background-color:#333333;"><img src="images/left_tab.gif" width="10" height="18" alt="left tab" /> System Protection <img src="images/right_tab.gif" width="10" height="18" alt="right tab" /></h2>
For the rounded gradient section below the header tab, I just created the graphic in Photoshop and positioned it in css as a background image. The folder images created on the services page were a little more difficult. The required a table to line the multiple images up on top of each other. The technique is very similar to the above example. Here is a sample of the code I used on the services page.
<table width="325" height="182" border="0" cellpadding="5" cellspacing="0">
<tr>
<td>
<h2 style="color:#0066FF; margin:10px 203px -7px 15px; padding-bottom:5px; background-color:#333333;"><img src="images/left_tab.gif" width="10" height="18" alt="left tab"><a href="services_hst.php"> Hosting </a><img src="images/right_tab.gif" width="10" height="18" alt="right tab" /></h2>
</td>
</tr>
<tr>
<td style="background-image:url(images/service_main_square2.jpg); background-position:left; background-repeat:no-repeat;">
<p style="margin-top:5px;">Whether you're just starting and looking for a simple web hosting or you're an advanced website developer looking to integrate e-commerce and databases into your site, you'll find that we have the services, tools and staff to help you every step of the way. <br /><br /></p>
</td>
</tr>
</table>
This website can be found at http://www.pryzemedia.com/goode