ok firstly sorry for the bump - unfortunately I have realised that I have to get this straight...
To recap - what I wish to do is put rounded corners on the 'what's new' section of the home page - that is in the center column - not sidebox.
the page is http://www.african-masks-art-and-gif...shop/index.php
I have put my 'rounded corners' code (found at http://www.redmelon.net/tstme/4corners/) around
<?php
/**
* prepares and displays center column
*
*/
require($body_code); ?>
in tpl_main_page.php, but this puts rounded corners around the entire middle section. How do I put rounded corners around 'What's new for June' section or 'featured products', etc.?
Thanks.
P.S. If you are viewing this in ie6 - my apologies! (I have been working on a pc with Vista and therefore no immediate access to ie6 - I will get around to it... *^^%%!$* ie6!)
Just in case anyone is looking for how to do this...
It is actually very simple.
If you wish, as I do, to put rounded corners around the 'What's New for (say) August' then...
in YOUR_TEMPLATE find 'tpl_modules_whats_new.php' in the templates folder and put the appropriate code around...
for exampleCode:<div class="centerBoxWrapper" id="whatsNew"> <?php require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php'); ?> </div>
obviously this can be applied to the other pages/divs.Code:<div id="border"> <div id="borderbot"> <div class="centerBoxWrapper" id="whatsNew"> <?php require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php'); ?> </div> </div> </div>
What a surprise... probs with ie (inc. ie7)
not sure if it is the way I am doing it but if you experience the same you can always comment away ie with...
e.g.Code:<![if !IE]> code... <![endif]>
Code:<![if !IE]> <div id="border"> <div id="borderbot"> <![endif]> <div class="centerBoxWrapper" id="featuredProducts"> <?php /** * require the list_box_content template to display the product */ require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php'); ?> </div> <![if !IE]> </div> </div> <![endif]>