ahhh...ok fixed the issue with the IE thanks for the tip. Now im having issues with another problem. I put this code in...
PHP Code:
<div id="navMain"> <ul class="back">
<li> <?php
echo zen_draw_form('categoriesSelect', zen_href_link(FILENAME_DEFAULT, '', 'NONSSL', false), 'get');
echo zen_draw_pull_down_menu('cPath', zen_get_categories(array(array('id' => '', 'text' => Categories))), (isset($_GET['categories_id']) ? $_GET['categories_id'] : ''), 'onchange="this.form.submit();" size="1"') . zen_hide_session_id();
echo '</form>';
?></li>
<li><?php
$manufacturer_list_query = "select m.manufacturers_id, m.manufacturers_name
from " . TABLE_MANUFACTURERS . " m
order by manufacturers_name";
$manufacturer_list = $db->Execute($manufacturer_list_query);
if ($manufacturer_list->RecordCount()>0) {
$number_of_rows = $manufacturer_list->RecordCount()+1;
// Display a list
$manufacturer_list_array = array();
if ($_GET['manufacturers_id'] == '' ) {
$manufacturer_list_array[] = array('id' => '', 'text' => PULL_DOWN_ALL);
} else {
$manufacturer_list_array[] = array('id' => '', 'text' => PULL_DOWN_MANUFACTURERS);
}
while (!$manufacturer_list->EOF) {
$manufacturer_list_name = ((strlen($manufacturer_list->fields['manufacturers_name']) > MAX_DISPLAY_MANUFACTURER_NAME_LEN) ? substr($manufacturer_list->fields['manufacturers_name'], 0, MAX_DISPLAY_MANUFACTURER_NAME_LEN) . '..' : $manufacturer_list->fields['manufacturers_name']);
$manufacturer_list_array[] = array('id' => $manufacturer_list->fields['manufacturers_id'],
'text' => $manufacturer_list_name);
$manufacturer_list->MoveNext();
}
}
echo zen_draw_form('manufacturers', zen_href_link(FILENAME_DEFAULT, '', 'NONSSL', false), 'get');
echo zen_draw_pull_down_menu('manufacturers_id', $manufacturer_list_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();" size="1"') . zen_hide_session_id();
echo zen_draw_hidden_field('main_page', FILENAME_DEFAULT) . '</form>';
?></li>
<li> <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></li>
</ul> </div>
and this is what i get www.shopyoungway.com i can not figure out what is going on. i am using a preexisting div to work with this and it just keeps it broke up. what am i doin' wrong on this. by the way thanks for this template. I hate css cause its about irritaten. but i will get it. any help would be apreciated