Skip to content

Instantly share code, notes, and snippets.

@megub
Created June 20, 2016 18:23
Show Gist options
  • Save megub/8f8cf187cd66b3a00bb95789f959a711 to your computer and use it in GitHub Desktop.
Save megub/8f8cf187cd66b3a00bb95789f959a711 to your computer and use it in GitHub Desktop.
RTL form support including, labels, checkboxes
<style>
form input,
form textarea,
form select,
form select option {
direction:rtl;
left:0 !important;
}
div.lp-pom-root .lp-pom-form-field label {
right:0;
left:auto;
text-align:left;
}
.lp-pom-form-field input[type=checkbox] {
left: auto !important;
}
div.lp-pom-root .lp-pom-form-field label.form-builder-checkbox-label {
right: 20px !important;
text-align: right;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment