我正在使用Joomla!与Artisteer生成的模板。我想把我的标题放在一个固定的位置,这样当我滚动时,标题将保持在它的位置,我知道该怎么做。但是,当我的标题被修复,并且我滚动时,我的网站内容与我的标题重叠,这对我没有任何意义。有人可以帮帮我吗?
Dim FileName As String
Dim folderPath As String
folderPath = Application.ActiveWorkbook.Path
FileName = folderPath & "\stress.rpt"
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;FileName", _
Destination:=Range("$M$8"))
答案 0 :(得分:0)
可能是您必须将标题z-index更改为值为9999的顶部画布 div / section content z-index为1。
.art-header
{
margin: 0 auto;
height: 80px;
background-image: url('../images/header.jpg');
background-position: center top;
background-repeat: no-repeat;
position: fixed;
z-index: 9999 !important;
}