Focus Blog主题的总宽度(WordPress)

时间:2018-05-27 21:27:05

标签: html css

我正在尝试将文本容器的总宽度增加到95%,无论分辨率如何,我的博客

https://osezrealiservosreves.com/

所以我写了下面的代码(移动设备)

但它不起作用 它正确应用margin-left,但容器的宽度不会增加。

@media screen and (max-width: 768px) {
  .wrp {
    margin: 0 2.5% !important;
    width: 95% !important;
  }
}

enter image description here

我在桌面模式上遇到了同样的问题,

我想在主页中增加博客流量的宽度。

默认设置为

.cnt .bSe.left, .cnt .bSe.right {
    width: 67.59%;
}
.cnt .sAs {
    margin-left: 20px;
    width: 30.55%;
}

所以它基本上已经100%了,但它没有覆盖我的分辨率的所有宽度

enter image description here

我想对这个使用相同主题的网站做一些看法,但我找不到他的做法:https://traficmania.com/lire-le-blog/

enter image description here

你知道是什么阻止它起作用吗?

我很确定这很容易,但我可能错过了一些东西

非常感谢任何帮助,提前谢谢你:)

帕斯卡

1 个答案:

答案 0 :(得分:1)

如果要在包装器中设置样式元素,则该元素应设置为: 宽度:100%。 因此,将采取100%的包装。 将wrp宽度保持在95%,将内部保持在100%,它应该可以工作。