Incompatibility with Avada theme v3.3.1
-
After upgrading Avada from 3.1.1 to 3.3.1, email addresses are now being displayed in reverse order.
From what I can gather, WP Mailto Links CSS is being overridden by the theme CSS beecause they’ve defined a class with the same name and is taking higher precedence.
Here’s the WP Mailto Links CSS class:
.rtl { unicode-bidi: bidi-override; direction: rtl; }Here’s the Avada CSS class:
.rtl { direction: rtl; unicode-bidi: embed; }I’m not 100% certain if this is the best method of fixing the issue, but I added “!important” after the plugin’s unicode-bidi property definition and the problem resolved:
.rtl { unicode-bidi: bidi-override !important; direction: rtl; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Incompatibility with Avada theme v3.3.1’ is closed to new replies.