This forum is archived. Posts are preserved for historical reference. For current help, join us on Discord.

Need help with content under nav

In UserSpice 4.3 and Below · Started by Abdel112 on 2018-08-11 7:02 pm · 6159 views · 1 replies

Hey all 

I downloaded your software as it seems to be the perfect fit for what i need but for some reason the navigation is over the top of the content on a clean install. Any idea how i can fix this as iv tried a few things but can't seem to fix it.

Example 


https://gyazo.com/2f517e803b614752d881b9954f8f063c

Any help would be grateful 

Thanks
There's a lot of ways to fix this. Depends on how you are presenting the nav. For me, my nav is fixed height, and I have a custom collapse script that pulls in elements on scroll and squishes the whole thing down to yet another custom size. On account of that, I use a margin-top on the <body> and modify it on collapse.
body {
  margin-top: 80px;
}

nav {
  height: 80px;
  position: fixed;
}

sort of like that.