|
|
|
|
|
|
|
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|
#1 |
|
Are you sure you're an accredited and honored pornographer?
Join Date: Sep 2008
Posts: 67
|
Hi,
I noticed that you are nowing using the new menus throughout the site and not just on the test page: http://www.lusciousdelights.com/linklist/amateurt.php. When I look at the pages the menu appears to go down past its bounding box and there is sometimes no space between the menu and the ad below. I was able to hack a test fix into a downloaded copy of one of your pages that might give you some insight into the problem and lead you towards a fix. I changed Code:
<div class="menunav"> Code:
<div class="menunav" style="padding-bottom: 5em"> Best of luck, fg |
|
|
|
|
|
#2 |
|
wtfwjd?
Join Date: May 2007
Posts: 2,103
|
Thanks for your help. What I did was put a margin at the bottom of the div using a css rule for the class "menunav" which looks ok in IE, but not FF. Ugh...I might try your suggestion and see what happens.
|
|
|
|
|
|
#3 | |
|
Are you sure you're an accredited and honored pornographer?
Join Date: Sep 2008
Posts: 67
|
Quote:
First replace: Code:
<div class="menunav"> Code:
<div class="menunav" id="menunav_id"> Code:
<script type="text/javascript">
<!--
var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
Code:
<script type=text/javascript>
<!--
if (! menunav_retry) { // test for safari happiness
document.getElementById('menunav_id').style.height =
(document.getElementById('menunav1').clientHeight +5) + 'px';
menunav_retry = 1;
}
var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
If this works for you, you can also remove the height specification from the .menunav css rule. HTH, fg |
|
|
|
|
|
|
#4 |
|
Are you sure you're an accredited and honored pornographer?
Join Date: Sep 2008
Posts: 67
|
Actually - just noticed, for this to work you actually need to change
Code:
height: 755px; Code:
height: auto; |
|
|
|
![]() |
|
|