gpt4 book ai didi

css - 使 Joomla header 静态以便始终可见

转载 作者:太空宇宙 更新时间:2023-11-04 12:09:08 28 4
gpt4 key购买 nike

一位客户问他是否可以将他网站的标题区域设为静态以便始终可见?

我正在使用 Eris 模板:http://hogash-demos.com/themeforest/?theme=eris_joomla

我的网站是:http://www.negotiumrecruitment.co.uk/dev

带有 Logo 、联系信息和导航的顶部区域以及下面的线都希望留在原处,当滚动时,整个站点向上移动,顶部区域始终保持可见。

提前谢谢你。

保罗沃克

最佳答案

你可以试试:

#rt-header {
position: fixed;
top: 0;
width: 100%;
}

An element with a fixed position is positioned relative to the browser window, and will not move even if the window is scrolled

来源:http://www.w3schools.com/css/css_positioning.asp

编辑:看到您证明的网站,您还需要更改您的 #rt-logo CSS 规则。它目前是“绝对”的,应该改为“固定”:

#rt-logo {
display: block;
position: fixed; /* Instead of 'absolute' */
left: 50%;
top: 0;
margin-left: -470px;
z-index: 9999;
}

这是因为您的 Logo 位于模板中的页眉之外。通常它会在标题内,您不需要它。

关于css - 使 Joomla header 静态以便始终可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29163621/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com