Forum Moderators: open
I think it's in CSS isn't it?
You have to click Menu and it comes up.
You have to scroll up to the top to click on it.The question was probably a red herring anyway, because you could set it to {display: fixed;} in CSS and then it would always be visible, without affecting any other aspect of its behavior. Not saying that you would want to do this in the specific case of a menu button with a dropdown, as things could get messy.
I have a Nav menuWhat, exactly, do you mean by “I have”?
In the case of a button that's the wrong color, you're probably talking about background-color ("color" alone means the color of text and possibly borders), so look for that in CSS.
<div id="nav-overlay" class="nav-overlay">
<a id="nav-close" href="javascript:void(0)" class="closebtn">×</a>
<div class="nav-overlay-content">
<a href="index.htm">Home</a>
<a href="register.htm">Register with Us</a>
<a href="property-list.htm?trans_type_id=1">Property for Sale</a>
<a href="how-to-sell.htm">How to Sell</a>
<a href="the-sales-process.htm">The Selling Process</a>
<a href="property-list.htm?trans_type_id=2">Property for Let</a>
<a href="how-to-rent.htm">How to Rent</a>
<a href="information-for-tenants.htm">Information for Tenants</a>
<a href="valuation.htm">Valuation</a>
<a href="about-us.htm">About Us</a>
<a href="contact.htm">Contact Us</a>
<a href="testimonials.htm">Testimonials</a>
<a href="blog/">Blog</a>
</div>
</div
<a id="nav-close" href="javascript:void(0)" class="closebtn">×</a>
$("#nav-toggle").click(function() {
if ( $(window).width() > 1200) {
$("#nav-overlay").css({width: '25%', left: '75%'});
} else if ( $(window).width() > 768) {
$("#nav-overlay").css({width: '50%', left: '50%'});
} else {
$("#nav-overlay").css({width: '100%', left: '0%'});
}
});
$("#nav-close").click(function() {
$("#nav-overlay").css({width: '0%', left: '100%'});
});
×Oh, my gosh, is that where the little x comes from? How goofy!