• Resolved nisimpaniri

    (@nisimpaniri)


    I activated and configured the plugin and it works great and looks wonderful! Thanks for that.
    The only problem I have is that my site is in Hebrew, and the emails that are sent are indeed displayed in Hebrew but in the direction of a paragraph from left to right.
    Is there any way to solve this problem?
    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Julian

    (@juliangk)

    Hello @nisimpaniri,

    you can add your custom CSS (please check out the FAQ section) and add this CSS rule:
    .yourclass {
    ??direction: rtl;
    }

    Best regards
    Julian

    Thread Starter nisimpaniri

    (@nisimpaniri)

    Thanks for the quick response.
    I don’t understand it a bit, I tried this way and it didn’t work for me. What needs to be fixed?

    
    
    add_filter( 'haet_mail_css_desktop', function( $css ){
        $css .= '  
    				.yourclass {
    			    direction: rtl;
    			}
            ';
        return $css;
    });
    
    • This reply was modified 11 months, 1 week ago by nisimpaniri.
    Plugin Support Julian

    (@juliangk)

    @nisimpaniri,

    “yourclass” is an example. You have to identify the class name of the element you want this rule applied to.

    If it’s each “p” tag, it would have to be:
    p {
    direction: rtl;
    }

    You can try this however (if there are no exceptions):
    * {
    direction: rtl;
    }

    Best regards
    Julian

    Thread Starter nisimpaniri

    (@nisimpaniri)

    It works great!
    Thanks again and have a good day!

    Plugin Support Julian

    (@juliangk)

    Thank you very much,
    hope you have a great day as well.

    Please let me know if there is anything else you need help with.

    Best regards
    Julian

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Support for right-to-left text display’ is closed to new replies.