菜单重叠内容

时间:2015-01-03 14:19:57

标签: css menu

我迫切希望此菜单位于内容的顶部/顶部。

它已修复,使用锚点跳过页面...并使用一些js进行平滑滚动

我无法让它像这个例子http://www.catscarf.com/

那样坐在内容上

我尝试过使用所有边缘顶部,但它们只是让它在菜单上颠簸......或者它与我无法找到的东西重叠。

有人可以帮忙吗?我疯了!

http://veterinarymarketingsolutions.ca/VMSsite1/

1 个答案:

答案 0 :(得分:2)

只有简单的CSS,你需要将位置设置为固定,所以...(使用标题但你使用的任何选择器,交换它)

header{
  position:fixed;
  top:0;
  left:0; /* left & right as "0" will make it full width. */
  right:0;
  z-index:99; /* z-index will place it above any element with a z-index of 98 or below */
  height: 5rem;
}