hi please notice on hebrew and RTL language wordpress the images block your features and buttons
such as in the attached screen shot.
hope you fix this
Amir

hi please notice on hebrew and RTL language wordpress the images block your features and buttons
such as in the attached screen shot.
hope you fix this
Amir

Hi There,
To fix this issue, please add the following code under functions.php file locates in your child theme:
add_action( 'admin_head', 'print_admin_css' );
function print_admin_css(){
?>
<style type="text/css">
.rtl .tco-box-bg {
top: 62px;
right: auto;
transform: rotate(0);
left: 0;
}
</style>
<?php
}
Hope it helps 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.