i want to change the text inside my wordpress theme from LTR to RTL,
<html dir="RTL">
i implemented this code into header.php, it makes a mirror of the whole website such as images,buttons etc.. i just want to change the text alignment inside the buttons without changing the button position.
i also tried the following code:
text-align: left;
float: right;
clear: left;
changed "left to "right" and the opposite but it changed the whole website elements and text, i only want to change the text.
dir="RTL"
(otherwise all the items will be displayed from RTL)direction:rtl;
for the button in your Stylesheet to display the item in right-to-left.