标题没有固定在页面顶部

时间:2016-11-16 18:24:16

标签: jquery html css wordpress styles

在我的网站上,我目前正在创建http://ubie-global.ubieportal.co.uk/我的标题有一个固定的CSS位置。但是,因为我已经对我网站上的菜单进行了更改。标题不再固定在顶部

2 个答案:

答案 0 :(得分:0)

将header元素放在“container-fluid”元素之前:

body
  header
  container

答案 1 :(得分:0)

更新您的page-wrap班级元素

.page-wrap {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    top: 0;
    bottom: 100%;
    z-index: 1;
}

防止页面在导航打开时滚动:

.page-wrap-menu {
    transform: translateX(-360px);
    position: fixed;
    width: 100%;
    height: 100%;
}