从 Heatia V3.0.23 版本开始,主题的作者移除了免费版本的页脚版权信息修改功能,用户可以回退到 3.0.22 版本或升级到专业版以继续使用。但是可以使用主题推荐的插件 Orbit Fox Companion 来更改页脚信息。
- 方法一
在额外 CSS 插入以下代码隐藏主题自带的页脚信息
.footer {
display: none;
}
在 Footer scripts 插入以下代码添加页脚信息
<footer style = "text-align:center; line-height: 1.5em; padding:1.5em">
<p>自定义页脚信息</p>
</footer>
- 方法二
直接在 Footer scripts 插入以下代码
<script type="text/javascript">
window.addEventListener('load', function(){
const copyright = document.querySelector('footer.footer div.hestia-bottom-footer-content div.copyright');
copyright.innerHTML = '自定义页脚信息';
});
</script>
更改页脚背景颜色
.footer-black {
background: #e5e5e5 !important;
}
版权信息居中,字体颜色跟修改后的页脚颜色相似,难以辨认,所以顺便更改版权字体颜色
.copyright {
float: none !important;
color: #e91e63 !important;
}
页脚链接字体的颜色
.footer a:link {color :#e91e63 !important;} /*未被访问的链接的颜色*/
.footer a:visited {color: #FF0000 !important;} /*已被访问的链接的颜色*/
.footer a:hover {color: #FF00FF !important;} /*鼠标指针移动到链接上的颜色*/
.footer a:active {color: #0000FF !important;} /*正在被点击的链接的颜色*/
0 条评论