newbie
Posted: Wed, 2008-05-07 14:04
Hi all,
I have almost completed this design for this site:
http://dev.byboe.com
However, I am running into a large problem using some css div tags and some php.
This is the page that is giving me problems (I have attached the sample culprit to this post in jpg form)
http://dev.byboe.com/stores
Now in Firefox, Safari, etc for mac and PC everything works fine and this does not happen. However on IE7 this keeps happening when you select a state from the list it goes over the footer file.
Any solves?
Code for stores index
<?php $page_title = '';$state = empty($_REQUEST['state']) ? '' : $_REQUEST['state'];if ($state) $page_title .= (($state == '00') ? 'International' : $state) . ' ';$page_title .= 'Stores';include_once('templates/page_header.php'); include_once('lib/stores.php'); ?> <div id="content-main"> <div id="content"> <?php if ((empty($_REQUEST['state']))) { ?> <div id="stores-content-new"> <?php } else { ?> <div id="stores-content"> <?php } ?> <div id="stores-contentleft"> <ul id="stores-contentleft"> <li><img src="/images/Stores-img.jpg" /></li> <li class="please-select">please select a state</li> <li><?php print states($state); ?></li> </ul> </div> <div id="stores-contentright"> <ul id="stores-contentright"> <?php if ((empty($_REQUEST['state']))) { ?> <li><img src="/images/image19.jpg" width="190" height="144" /></li> <li class="our-p-left"><span class="our-retall">by boe</span><br /> 172 Prince street<br /> New York, NY 10012<br /> 212.226.5200</li> <?php } ?> <li><br></li> <li><br></li> <li><br></li> <?php print stores($state); ?> </ul> </div><?php include_once('templates/page_footer.php'); ?>
Code for footer
</div> <div id="navigation-border"><img src="/images/navigation-border.jpg" /></div> <div id="footer-new"> <div id="footer1"> <ul id="footer1"> <li><a href="/about/">ABOUT</a></li> <li><a href="/press/">PRESS</a></li> <li><a href="/stores/">STORES</a></li> <li><a href="/wholesale/">WHOLESALE</a></li> <li><a href="/contact/">CONTACT</a></li> </ul> </div> <div id="footer2">Copyright By Boe <a href="/terms/">Terms and conditions</a><p><p><br /><br /><br /></div> </div> </div><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-2521473-2";urchinTracker();</script><script type="text/JavaScript" src="/scripts/sestats.js"></script><p><p><br /><br /></body></html>
newbie
Posts: 1
Joined: 2008-05-07
Location: New York
Posted: Wed, 2008-05-07 14:04
Hi all,
I have almost completed this design for this site:
http://dev.byboe.com
However, I am running into a large problem using some css div tags and some php.
This is the page that is giving me problems (I have attached the sample culprit to this post in jpg form)
http://dev.byboe.com/stores
Now in Firefox, Safari, etc for mac and PC everything works fine and this does not happen. However on IE7 this keeps happening when you select a state from the list it goes over the footer file.
Any solves?
Code for stores index
<?php
$page_title = '';
$state = empty($_REQUEST['state']) ? '' : $_REQUEST['state'];
if ($state) $page_title .= (($state == '00') ? 'International' : $state) . ' ';
$page_title .= 'Stores';
include_once('templates/page_header.php');
include_once('lib/stores.php');
?>
<div id="content-main">
<div id="content">
<?php
if ((empty($_REQUEST['state'])))
{
?>
<div id="stores-content-new">
<?php
}
else
{
?>
<div id="stores-content">
<?php
}
?>
<div id="stores-contentleft">
<ul id="stores-contentleft">
<li><img src="/images/Stores-img.jpg" /></li>
<li class="please-select">please select a state</li>
<li><?php print states($state); ?></li>
</ul>
</div>
<div id="stores-contentright">
<ul id="stores-contentright">
<?php
if ((empty($_REQUEST['state'])))
{
?>
<li><img src="/images/image19.jpg" width="190" height="144" /></li>
<li class="our-p-left"><span class="our-retall">by boe</span><br />
172 Prince street<br />
New York, NY 10012<br />
212.226.5200</li>
<?php
}
?>
<li><br></li>
<li><br></li>
<li><br></li>
<?php print stores($state); ?>
</ul>
</div>
<?php include_once('templates/page_footer.php'); ?>
Code for footer
</div>
<div id="navigation-border"><img src="/images/navigation-border.jpg" /></div>
<div id="footer-new">
<div id="footer1">
<ul id="footer1">
<li><a href="/about/">ABOUT</a></li>
<li><a href="/press/">PRESS</a></li>
<li><a href="/stores/">STORES</a></li>
<li><a href="/wholesale/">WHOLESALE</a></li>
<li><a href="/contact/">CONTACT</a></li>
</ul>
</div>
<div id="footer2">Copyright By Boe <a href="/terms/">Terms and conditions</a><p><p><br /><br /><br /></div>
</div>
</div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2521473-2";
urchinTracker();
</script>
<script type="text/JavaScript" src="/scripts/sestats.js"></script>
<p><p><br /><br />
</body>
</html>