简体   繁体   中英

Content hide in Navigation Bar - One Page Website

I am working on website called : denimistcompany.com

issue is that that menu is link with elements "id" , and now when someone clicks on about us , the main heading called Welcome to Denimist ... got hidden in navigation background.

is that possible we somehow start the the section from the point we like as all links is having same problem.

THanks

Keeping in mind that your navigation bar height is 90px and it's fixed, you have to use pseudo-element:

#aboutus::before {
  content: "";
  display: block;
  position: relative;
  margin-top: -90px;
}

Or alternatively can try this as well:

#aboutus {
  padding-top: 90px;
  margin-top: -90px;
}

Just checked on your website, and it works great.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM