Contact form text direction

Hi,

I added the contact form to SF menu. but i am not able to change the text direction from RTL. How can i change it?
<p style="text-align: right;"><br />[contact-form-7 id="4901" title="Contact form 1"]</p>

Hi @tarekr,

Thanks for writing in.

This code below will switch your div or class into RTL.

div {
    direction:rtl;
} 

For example, in your code above,

.wpcf7-form {
   direction:rtl;
 
}

Hope it helps.

Let us know how it goes.

Thanks.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.