【问题标题】:RTL with visual composer for wordpress带有用于 wordpress 的可视化作曲家的 RTL
【发布时间】:2017-11-03 21:49:33
【问题描述】:

我在使用 WordPress 的可视化作曲家时遇到 RTL 问题,右侧有一个空白区域。在行! 我能做些什么? 请帮帮我。

RTl 与可视化作曲家的问题

【问题讨论】:

  • 是否值得稍微解释一下您的代码?

标签: wordpress right-to-left visual-composer


【解决方案1】:

试试这个代码,它将解决方向问题

 body.rtl .vc_row[data-vc-full-width] {
    position: relative;
    width: 100vw !important;
    right: 50% !important;
    left: auto !important;
    transform: translateX(50%) !important;
    padding-left: calc( (100vw - 1140px) / 2 ) !important;
    padding-right: calc( (100vw - 1140px) / 2 ) !important;
}
@media(max-width:767px){
    body.rtl .vc_row[data-vc-full-width] {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

【讨论】:

    猜你喜欢
    • 2017-12-29
    • 2016-06-24
    • 2017-09-26
    • 1970-01-01
    • 2018-01-09
    • 1970-01-01
    • 2015-11-23
    • 2016-03-18
    • 2014-07-07
    相关资源
    最近更新 更多