Last active
May 18, 2020 12:33
-
-
Save assoscoupa/ff6079364e51da6d7f111f677256eed7 to your computer and use it in GitHub Desktop.
CSS Hide element from specific language WPML etc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Hide element from Spanish language */ | |
| .hideLang:lang(es) {display: none !important;} | |
| This DIV will be hidden from Spanish, for instance. | |
| 1 | |
| <div class="hideLang">Hello my friend</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment