Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

responive navigation

New Here ,
Jan 30, 2017 Jan 30, 2017

How do i get my navigation to appear over the slideshow images? The site is responsive and it appears behind on browser sizes.

Also on my site on the size below 769 px the menu automatically appears and i want it to appear when the word menu is clicked on.

http://zutterdesign.com/bates/. the pages im having the overlay issue on is the Index, Food & Games and Amenities & Support.

How do i fix this?

This is the last thing i have to do to complete this project.

285
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Jan 30, 2017 Jan 30, 2017

jzutter wrote:

How do i get my navigation to appear over the slideshow images? The site is responsive and it appears behind on browser sizes.

Give the navigation container a position of relative and set the z-index to 1000;

.navigation {

position: relative;

z-index: 1000;

}

To have the mobile menu display none at 768px and open when the 'menu bar' is clicked add the below to your css:

@media screen and (max-width: 768px) {

#menu {

display: none;

}

}

Then add this script to the <head> section of your page:

<sc

...
Translate
LEGEND ,
Jan 30, 2017 Jan 30, 2017
LATEST

jzutter wrote:

How do i get my navigation to appear over the slideshow images? The site is responsive and it appears behind on browser sizes.

Give the navigation container a position of relative and set the z-index to 1000;

.navigation {

position: relative;

z-index: 1000;

}

To have the mobile menu display none at 768px and open when the 'menu bar' is clicked add the below to your css:

@media screen and (max-width: 768px) {

#menu {

display: none;

}

}

Then add this script to the <head> section of your page:

<script>$(document).ready(function() {

  $('#menu').click(function(){

  $('#menu').show();

  });

  });

</script>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines