Quote Originally Posted by jettrue View Post
Here's a good method:
http://kalsey.com/2003/07/rounded_corners_in_css/. You'd have to probably create the containers for the corners in tpl_main_page.php.
First of all I want this background to show up on the page that is viewed when you click on this link http://oneposhshop.com/Shop and judging from the page source and the changes that I made to the "tpl_main_page.php" file that isn't the tpl_main_page.

The other thing I'm not clear on is, how do you, "create containers" in the tpl_main_page.php?

Here is what I did in the tpl_main_page.php,
Code:
<div id="mainWrapper">
<?php
 /**
  * prepares and displays header output
  *
  */
  require($template->get_template_dir('tpl_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header.php');?>
<div class="roundcont">
   <div class="roundtop">
     <img src="http://oneposhshop.com/Shop/includes/templates/Posh_by_Trois_Soeurs/Images/left_corner_bg.jpg" alt="" 
     width="15" height="15" class="corner" 
     style="display: none" />
   </div>

   <p><img src="http:/oneposhshop.com/Shop/includes/templates/Posh_by_Trois_Soeurs/Images/Trois Soeurs.gif"></p>
  
   <div class="roundbottom">
     <img src="http://oneposhshop.com/Shop/includes/templates/Posh_by_Trois_Soeurs/Images/bot_left_corner_bg.jpg" alt="" 
     width="15" height="15" class="corner" 
     style="display: none" />
   </div>
</div></div>

<!-- bof  breadcrumb -->
Is that how containers are created?