Wordpress Visual Composer Strech行和方向RTL

时间:2016-09-15 08:19:30

标签: javascript jquery css wordpress visual-composer

当我尝试在Visual Composer中的行设置中拉伸行时,行会拉伸,但行的位置都是错误的。 仅当身体方向具有direction:rtl css设置时才会发生。

网站在线:http://ono.devurl.net/?page_id=871

任何修复方法?

尤瓦。enter image description here

4 个答案:

答案 0 :(得分:11)

Yuval嘿!

尝试使用此脚本来解决问题。



    if( jQuery('html').attr('dir') == 'rtl' ){
        jQuery('[data-vc-full-width="true"]').each( function(i,v){
            jQuery(this).css('right' , jQuery(this).css('left') ).css( 'left' , 'auto');
        });
    }




将此脚本代码放在jQuery(窗口).load。

希望这会帮助你:)

答案 1 :(得分:4)

使用css可以更容易地解决它,并且在页面调整大小时也可以使用它。 在[data-vc-full-width =" true"]之前查找行的类,并将这样的css添加到rtl.css

.before-fullwidth-row {
    direction: ltr;
}
.before-fullwidth-row > div {
    direction: rtl;
}

似乎工作......

答案 2 :(得分:0)

如果您想在window resize上修复VC Row,请使用此解决方案:

    $(window).on( 'resize', function() {
        $( '.rtl [data-vc-full-width="true"]' ).each( function(){
            $( this ).css( 'right' , $( this ).css( 'left' ) ).css( 'left' , 'auto' );
        });
    }).resize();

答案 3 :(得分:0)

WordPress Visual Composer全宽行(拉伸行)修复RTL

jQuery(document).ready(function() {

function bs_fix_vc_full_width_row(){
    var $elements = jQuery('[data-vc-full-width="true"]');
    jQuery.each($elements, function () {
        var $el = jQuery(this);
        $el.css('right', $el.css('left')).css('left', '');
    });
}

// Fixes rows in RTL
jQuery(document).on('vc-full-width-row', function () {
    bs_fix_vc_full_width_row();
});

// Run one time because it was not firing in Mac/Firefox and Windows/Edge some times
bs_fix_vc_full_width_row();
});

Source