Hello,
Yes, you can add your css into body.translatepress-en_US{}.
Here is an example of using body.translatepress for changing the font of your secondary language:
@import url(‘https://fonts.googleapis.com/css?family=Padauk&display=swap’);
body.translatepress-ro_RO{ font-family:Padauk; } // Use your desired font and language code
Please let me know if you have any more questions!
sorry sir where should I Add the css modification in css custom of the wordpress or inside the plugin css?
Hello again,
In the Additional CSS section of your WordPress page.
With the best regards,
OK thanks , one more question if I need just specific tag in the page for example the class cart
the syntax could be like this:
.cart.translatepress-en_US{
}
isn’t it?