Hi all,
I have almost completed this design for this site:
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)
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');
?>
<?php
if ((empty($_REQUEST['state'])))
{
?>
<?php
}
else
{
?>
<?php
}
?>
- please select a state
- <?php print states($state); ?>
- by boe
172 Prince street
New York, NY 10012
212.226.5200
<?php
if ((empty($_REQUEST['state'])))
{
?>
<?php
}
?>
<?php print stores($state); ?>
<?php include_once('templates/page_footer.php'); ?>
Code for footer
_uacct = "UA-2521473-2";
urchinTracker();
Attachment | Size |
---|---|
screenshot-stores.jpg | 202.94 KB |