ok, so i dont know when i changed it, but i moved something above that should have been below...
still not "done" restructuring, but i changed this section:
Code:
<!--bof-navigation display -->
<div id="navSuppWrapper">
<div id="navSupp">
<ul id="bottomMenuStyle">
<li><a href="http://www.hsus.org" rel="popup console 820 700 noicon"><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/humanesociety.gif" alt="Humane Society" width="290" height="55" border="0"/></a></li>
<li><a href="javascript:void(0);" onclick="window.open('http://www.justhost.com/ecertified?domain='+document.domain+'','JustHost','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=570,height=680,left=300,top=200');"><img style="border:0px;" src="http://www.justhost.com/img/greenbadges/badge4.gif" alt="Green Web Hosting" /></a></li>
<li><a href="http://www.facebook.com/home.php?#/pages/Custom-K9-Design/72436717447?ref=mf" rel="popup console 975 700 noicon"><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/facebook_48.gif" alt="Facebook" width="55" height="55" border="0"/></a></li>
<li><a href="http://www.mozilla.com/en-US/firefox/organic/?from=sfx&uid=0&t=353570" rel="popup console 950 700 noicon"><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/organicfirefox.jpg"width="115" height="55" border="0"/></a></li>
<li><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/paymentoptions.png" width="115" height="55"></li>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
</ul>
<?php } ?>
</div>
</div>
<!--eof-navigation display -->
to this: (much cleaner)
Code:
<!--bof-navigation display -->
<div id="navSuppWrapper">
<div id="navSupp">
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
<?php } ?>
</ul>
</div>
</div>
<ul id="bottomMenuStyle">
<li><a href="http://www.hsus.org" rel="popup console 820 700 noicon"><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/humanesociety.gif" alt="Humane Society" width="290" height="55" border="0"/></a></li>
<li><a href="javascript:void(0);" onclick="window.open('http://www.justhost.com/ecertified?domain='+document.domain+'','JustHost','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=570,height=680,left=300,top=200');"><img style="border:0px;" src="http://www.justhost.com/img/greenbadges/badge4.gif" alt="Green Web Hosting" /></a></li>
<li><a href="http://www.facebook.com/home.php?#/pages/Custom-K9-Design/72436717447?ref=mf" rel="popup console 975 700 noicon"><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/facebook_48.gif" alt="Facebook" width="55" height="55" border="0"/></a></li>
<li><a href="http://www.mozilla.com/en-US/firefox/organic/?from=sfx&uid=0&t=353570" rel="popup console 950 700 noicon"><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/organicfirefox.jpg"width="115" height="55" border="0"/></a></li>
<li><img src="http://www.customk9design.com/catalogzen/includes/templates/darkness/images/paymentoptions.png" width="115" height="55"></li>
</ul>
<!--eof-navigation display -->
now my images and links show again... i would like to figure out how to call the "rel=xxxxxx" so that the pop-up part works better... im working on that now...
but at least the images show again, and the links work.. really have NO idea how all the "li"s got above the "php" script in the nav display... im sure i was copying and pasting at some point and messed it up.
thanks so far! will post more results..