如何覆盖宽度为 768-1140px 的 Joomla-Template CSS 文件中的 bootstrip.min.css
How to override bootstrip.min.css in Joomla-Template CSS file for width 768-1140px
我很难正确设置网站的 CENTER 和 RIGHT 列宽度,但只有在屏幕宽度为 768px 和 1140px 之间时,以下通过 template.css 的宽度覆盖根本无效:
@media (max-width: 1140px) and (min-width: 768px)
{
.row-fluid .span8 {width: 80%;}
}
对于所有其他屏幕宽度,bootstrap.min.css 中的标准设置工作得很好。覆盖文件名为 template.css,Joomla 3.5 CMS。在此处查看站点:http://www.alphaseeker.de
提前致谢,让我知道您可能需要的任何详细信息。
您只需将此行添加到 bootstrap.min.css 文件,此规则就可以正常工作!
我很难正确设置网站的 CENTER 和 RIGHT 列宽度,但只有在屏幕宽度为 768px 和 1140px 之间时,以下通过 template.css 的宽度覆盖根本无效:
@media (max-width: 1140px) and (min-width: 768px)
{
.row-fluid .span8 {width: 80%;}
}
对于所有其他屏幕宽度,bootstrap.min.css 中的标准设置工作得很好。覆盖文件名为 template.css,Joomla 3.5 CMS。在此处查看站点:http://www.alphaseeker.de 提前致谢,让我知道您可能需要的任何详细信息。
您只需将此行添加到 bootstrap.min.css 文件,此规则就可以正常工作!