travelify theme post page text alignment RTL

Dears

i am having the travelift theme installed in my blog and i am just wondering how to change the post and page title direction to RTL right to left

thanks for understanding

Hi @bulbul,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


#page .entry-title {
    direction: rtl;
}

Best Regards,
Movin

Hi Movin

thanks for your reply

but i need this for the posts , si i have tried your code with post instead of page like this

#post.entry-title {
direction: rtl;
}

but it didnt work

can we fix this please

thanks in advance

Could you please share me the post URL from your site where it’s not displaying correctly so that i can troubleshoot it?

Also please tell me why you want to make the post title RTL and can’t you just add the post title RTL directly in the admin area?

Hello

below is the link an example of some post , the reason i dont need to do from the Admin, as not all the website post are RTL language , some in English and some in Turkish .

thanks

http://www.t-channel.tv/turkish-var/الكبة-النيئة-ثاني-أكبر-صادرات-الطعام/

this is the link sorry

Please try using the below CSS code.

#main .entry-title {
direction: rtl;
text-align: right;
}

If the above code doesn’t work then use the following CSS code.


#main .entry-title {
direction: rtl;
text-align: right;
-moz-transform: scaleX(-1);    /* Gecko */
  -o-transform: scaleX(-1);      /* Opera */
  -webkit-transform: scaleX(-1); /* Webkit */
  transform: scaleX(-1);         /* Standard */
  filter: FlipH;                 /* IE 6/7/8 */
}

oooh thanks indeed my friend , the first one worked flawlessly , i appreciate you help , well done , good job mate .

thanks indeed

You are always welcome here :slight_smile: