Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 603397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:55:35+00:00 2026-05-13T16:55:35+00:00

I’m trying to make this jquery drop down bar be on top at all

  • 0

I’m trying to make this jquery drop down bar be on top at all time. I’m running into trouble on a specific page that is using jquery innerfade here: http://ithacacigars.com/cigars.php
For some reason is slips behind the images.

<?php include('perch/runtime.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by Davey Whitney
davey@daveywhitney.com
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<link rel="stylesheet" type="text/css" href="http://ithacacigars.com/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://ithacacigars.com/navstyle.css" media="screen" />
<title>Ithaca Cigars</title>

<script type="text/javascript" src="http://ithacacigars.com/js/jquery.js"></script>
<script type="text/javascript" src="http://ithacacigars.com/js/jquery.innerfade.js"></script>
<script type="text/javascript">
       $(document).ready(
                function(){

                    $('.ciglog').innerfade({
                        speed: 1000,
                        timeout: 5000,
                        type: 'sequence',

                    });
            });
 </script>


<script type="text/javascript">
$(document).ready(function () {
    $("ul.menu_body li:even").addClass("alt");
    $('img.menu_head').click(function () {
    $('ul.menu_body').slideToggle('medium');
    });
    $('ul.menu_body li a').mouseover(function () {
    $(this).animate({ fontSize: "14px", paddingLeft: "20px" }, 50 );
    });
    $('ul.menu_body li a').mouseout(function () {
    $(this).animate({ fontSize: "12px", paddingLeft: "10px" }, 50 );
    });
});
</script>

<script language="javascript">
image1 = new Image();
image1.src = "http://ithacacigars.com/images/homeon.png";

image2 = new Image();
image2.src = "http://ithacacigars.com/images/newon.png";

image3 = new Image();
image3.src = "http://ithacacigars.com/images/contacton.png";

image4 = new Image();
image4.src = "http://ithacacigars.com/images/navigateon.png";
</script>

</head>

<body>
<div id="wrapper">

<div id="column">   
    <div id="header">
      <img src="http://ithacacigars.com/images/header.png" />
    </div>
    <div id="content">
        <div id="nav">
        <div class="container">

<a href="http://ithacacigars.com/" onmouseover="image1.src='http://ithacacigars.com/images/homeon.png';"
onmouseout="image1.src='http://ithacacigars.com/images/home.png';">
<img name="image1" src="http://ithacacigars.com/images/home.png"></a>

<a href="http://ithacacigars.com/whatsnew.php" onmouseover="image2.src='http://ithacacigars.com/images/newon.png';"
onmouseout="image2.src='http://ithacacigars.com/images/new.png';">
<img name="image2" src="http://ithacacigars.com/images/new.png"></a>

<a href="http://ithacacigars.com/contact.php" onmouseover="image3.src='http://ithacacigars.com/images/contacton.png';"
onmouseout="image3.src='http://ithacacigars.com/images/contact.png';">
<img name="image3" src="http://ithacacigars.com/images/contact.png"></a>

<img src="http://ithacacigars.com/images/navigate.png" width="184" height="32" class="menu_head" />
<ul class="menu_body">
<li><a href="http://ithacacigars.com/cigars.php">Cigars</a></li>
<li><a href="http://ithacacigars.com/pipe.php">Pipe Tobacco</a></li>
<li><a href="http://ithacacigars.com/roll.php">Roll Your Own</a></li>
<li><a href="http://ithacacigars.com/acessories.php">Acessories</a></li>
</ul>
    </div>

</div>
    <div id="client">
        <ul class="ciglog">
               <li><img src="http://ithacacigars.com/images/cigarbarone.png" /></li>
               <li><img src="http://ithacacigars.com/images/cigarbartwo.png" /></li>
               <li><img src="http://ithacacigars.com/images/cigarbarthree.png" /></li>
               <li><img src="http://ithacacigars.com/images/cigarbarfour.png" /></li>
        </ul>
        <p class="cigarlist">
        <?php perch_content('Cigars'); ?>
        </p>
    </div>
</div>
</div>  
</div>

<div id="footer">
</div>
</body>

</html>

here is the css for everything but the drop down:

html, body {
    background-color:#1C130B;
}

a {
    text-decoration:none;
}

#wrapper {
    margin:0 auto;
}

#column {
    margin:0 auto;
    width:790px;
}

#header {

}

#nav {
    margin:0 0 0 20px;
    width:770px;
    height:35px;
}

.newbutton {
    float:right;
    width:130px;
}

#content {
    background-image:url('http://ithacacigars.com/images/contentbox.png');
    background-repeat:no-repeat;
    width:770px;
    height:770px;
    margin:40px 0 0 0;

}

#client {
    width:700px;
    height:550px;
    margin:20px 0 0 30px;
    font-weight: bold;
}

#portfolio .innerfade li img {
    margin:0 0 0 120px;
    height:350px;
}

#talk img{
    margin:20px 25px 0 0;
}

p .cigarlist {
    width:350px;
    height:550px;
    font-weight:bold;
    float:left;
}


.ciglog {
    width:350px;
    height:350px;
    float:right;
    position:relative;
    display:block;
}

#footer {
    width:100%;
    height:200px;
    background-color:#AE401E;
}

Css for dropdown:

@charset "utf-8";
/* CSS Document */


ul, li{margin:0; padding:0; list-style:none;}

.container img {
    border:1px solid #998675;
}

.menu_head{border:1px solid #998675; margin:0 0 0 200px;}

.menu_body {position:absolute; margin:0 0 0 553px; display:none; width:184px;border-right:1px solid #998675;border-bottom:1px solid #998675;border-left:1px solid #998675;}
.menu_body li{background:#493e3b;}
.menu_body li.alt{background:#362f2d;}
.menu_body li a{color:#FFFFFF; text-decoration:none; padding:10px; display:block;}
.menu_body li a:hover{padding:15px 10px; font-weight:bold;}

Any help would be greatly appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T16:55:36+00:00Added an answer on May 13, 2026 at 4:55 pm

    Set the z-index of class menu_body to a value greater than 4.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
Does anyone know how can I replace this 2 symbol below from the string
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Seemingly simple, but I cannot find anything relevant on the web. What is the
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.