Can someone help please. I just spent a lot of time getting the menu to look "right" in IE on the pc (when on other browsers it is right). Now I cannot figure out this problem. You can see the problem here...
http://www.lazerpro.com/projects/apa...ings.php?cid=1
The grey div layer box doesn't close on the right side. It does everywhere else and in other browsers and on the mac IE, but not the pc.
Please forgive my use of tables, I am still learning and hope someday soon to make the leap to all CSS. I absolutely love it. But IE drives me crazy and wastes my time. Any Help is appreciated.
peace
Summer
#resultsEntryGrey {
border: 1px dotted #666;
background-color: #F1F1F1;
color: #666;
padding:5px;
text-align: center;
}
<table width="625" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
<td bgcolor="#ffffff">
<div id="resultsEntryGrey">
<table cellpadding="5" cellspacing="0" border="0" width="100%">
<tr>
<td valign="top" rowspan="2"><a href="listing_detail.php?listing_id=<?php echo $listing_id[$i]; ?>">
<?php if( ($image_thumb[$i] == "gif") or ($image_thumb[$i] == "jpg") or ($image_thumb[$i] == "png") ){
$image_file = "./images/listings/" . $listing_id[$i] . "_thumb." . $image_thumb[$i];
$size = getimagesize($image_file);
$width = $size[0];
$height = $size[1];
#if($width > 80){ $width = 80; }
#if($height > 80){ $height = 80; }
?>
<img src="<?php echo $image_file; ?>" border="1" width="175" alt="">
<?php }else{
$image_file = "./images/listings/default_thumb.gif";
$size = getimagesize($image_file);
$width = $size[0];
$height = $size[1];
?>
<img src="<?php echo $image_file; ?>" border="1" width="<?php echo $width; ?>" height="<?php echo $height; ?>" alt="No Photo Available">
<?php } ?>
</a></td>
<td valign="top" class="body"><?php echo $address[$i]."<br>".$city[$i]; ?></td>
<td valign="top" class="body">
<div id="resultsMenu">
<ul>
<?php if( $extra_images[$i] > 0){ ?>
<script language="JavaScript">
<!----
function display_photos(listing_id){
var ses="photos_display.php?listing_id="+listing_id;
var blah=window.open(ses,'photos','toolbars=0,menu=0,directories=0,width=600,height=600,scrollbars=1,resizable=yes');
}
//--->
</script>
<li><a href="javascript:display_photos(<?php echo $listing_id[$i]; ?>)">More Photos </a></li>
<?php } ?>
<li><a href="listing_detail.php?listing_id=<?php echo $listing_id[$i]; ?>">More Details </a></li>
<?php if( $extra_ipix[$i] > 0){ ?>
<script language="JavaScript">
<!--
function display_tours(listing_id){
var ses="./tour_display.php?listing_id="+listing_id;
var blah=window.open(ses,'tours','toolbars=0,menu=0,directories=0,width=650,height=350,scrollbars=1,resizable=yes');
}
//-->
</script>
<li><a href="javascript:display_tours(<?php echo $listing_id[$i]; ?>)">Virtual Tour </a></li><?php } ?></ul></div></td>
</tr>
</table></div></td>
</tr>
</table>







Bookmarks