仅将页脚更改为全宽?

时间:2018-01-23 17:47:57

标签: html css footer blogger full-width

我想知道有没有办法将博客简单模板中的页脚扩展到全宽,而不会影响其他博客元素?我阅读了类似的主题,但它们也是关于wordpress或改变其他元素,我的是博客平台。我尝试更改此代码:

.content-outer,.content-fauxcolumn-outer,。region-inner {min-width:auto; max-width:auto; _width:$(content.width);}

我确实拉伸了页脚,还有其他博客元素。那么,有没有办法让其他元素不受影响,只能使用页脚元素进行操作?

我的博客的网址是:http://fashionsanja.blogspot.rs

提前致谢。

问候,

三社

2 个答案:

答案 0 :(得分:0)

另一种可能的解决方案是使用position:fixed。它绝对定位浏览器窗口中的元素。此外,通过向左和向右设置,它将跨越浏览器窗口的整个宽度。根据您的网站,以下内容适用于开发工具:

#KBD {
    background-color: #000;
    color: #fff;
    font-size: 11px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

答案 1 :(得分:-1)

根据您的评论中的xml,您需要将页脚元素移到.content div

之外

试试这个https://jsfiddle.net/04a7p926/1/