• Hi,
    I’ve tried to use your plugin on a Right-To-Left website, and unfortunately found out it is incompatible.
    If I make the necessary changes would you update the plugin with it? do you have a GitHub repo?
    -Itay

Viewing 1 replies (of 1 total)
  • Thread Starter ItayXD

    (@itayxd)

    a simple fix in hrf-style.php:

    .hrf-title.close-faq{
                   cursor: pointer;
                }
                .hrf-title.close-faq::before{
                   content: "";
                   width: 30px;
                   height: 30px;
                   display: inline-block;
                   vertical-align: middle;
    /*               position: relative;
                   left: 0;
                   top: 8px;*/
                   margin-right: 12px;
                   margin-left: -42px;
                   background: '.$bullets_bgcolor.' url('.plugins_url( 'html5-responsive-faq/images/open.png' ).') no-repeat center center;
                }
                }.hrf-title.open-faq{
                
                }
                .hrf-title.open-faq::before{
                   content: "";
                   width: 30px;
                   height: 30px;
                   display: inline-block;
                   vertical-align: middle;
    /*               position: relative;
                   left: 0;
                   top: 8px;*/
                   margin-right: 12px;
                   margin-left: -42px;
                   background: '.$bullets_bgcolor.' url('.plugins_url( 'html5-responsive-faq/images/close.png' ).') no-repeat center center;
                }
                [dir="rtl"] .hrf-title::before{
                   margin-left: 12px;
                   margin-right: -42px;
                }
Viewing 1 replies (of 1 total)
  • The topic ‘RTL support’ is closed to new replies.