Forums / Templates, Stylesheets, Page Layout / help with problem in stylesheet

help with problem in stylesheet

Locked
Results 1 to 3 of 3
This thread is locked. New replies are disabled.
08 Sep 2009, 19:44
#1
aperfecthost avatar

aperfecthost

New Zenner

Join Date:
May 2005
Posts:
97
Plugin Contributions:
0

help with problem in stylesheet

I am using latest version. The site I'm working on is: http://photo-calendars.com/zencart/index.php?main_page=product_info&cPath=0&products_id=39

I am having a problem with getting my left column looking correctly.

I do not have any sideboxes. It is a custom looking left column. I cannot figure out how to make the yellow background appear all the way down the side of the page. The yellow on the left column stops when the info for the left column stops. However, product pages are much longer than that column and I need the yellow background in the left column to show all the way down the length of the pages.

Here is my left column.


<?php
/**
* column_left module
*
* @package templateStructure
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: column_left.php 4274 2006-08-26 03:16:53Z drbyte $
*/
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}

?>


<div class="leftcol">

<a href="index.php?main_page=contact_us"><img src="images/calendars/liveSupport.png" border="0" /></a>

<div class="leftTdHeader"><b>SELECT A STYLE</b>

</div>
<div class="insideL">
<p>
<a href="index.php?main_page=product_info&cPath=0&products_id=39">Memory Calendar</a><br />one photo per month
</p><p>
<a href="index.php?main_page=product_info&cPath=0&products_id=34"><u>Photo Gallery Calendar</a></u><br />multiple photos each month
</p><p>
<a href="index.php?main_page=product_info&cPath=0&products_id=54">Tear-Off Calendar</a><br />one photo and 12 tear off months
</p><p>
<a href="index.php?main_page=product_info&cPath=0&products_id=94">Large Volume Orders</a><br />50+ Calendars
</p>
</div>

<div class="leftTdHeader"><b>OTHER FEATURES</b>
</div>

<div class="insideL">
<p>
<a href="index.php?main_page=uploads">Send Digital Photos</a>
<br><br>
<a href="index.php?main_page=captions">Caption Form</a>
<br><br>
<a href="index.php?main_page=eventsoption">Personal Events Form</a>
<br><br>
<!-- <a href="mailorder.php">Mail Order Form</a> -->
</p>



Please help. I'm stumped!
08 Sep 2009, 20:44
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Posts:
19,793
Plugin Contributions:
2

Re: help with problem in stylesheet

Find this in your stylesheet:

#contentColumnMain, #navColumnOne, #navColumnTwo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .alert {
vertical-align: top;
}

Separate #navColumnOne into its own statement:

#navColumnOne {
vertical-align: top;
background-color:#ffce63;
}

and add the red part.
08 Sep 2009, 20:55
#3
aperfecthost avatar

aperfecthost

New Zenner

Join Date:
May 2005
Posts:
97
Plugin Contributions:
0

Re: help with problem in stylesheet

Thank you so much!!! I had tried adding that to the wrapper, but not to that. (didn't see it??) Anyway, thank you!