Created
May 12, 2021 20:27
-
-
Save Bovelett/b81e8ea6319ae38d025c326dd29adb85 to your computer and use it in GitHub Desktop.
Elementor Button HTML without role="button"
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
| /*Manual Button CSS if you want to center the button*/ | |
| .cta_included { | |
| display: -webkit-box; | |
| display: -ms-flexbox; | |
| display: flex; | |
| -webkit-box-pack: center; | |
| -ms-flex-pack: center; | |
| justify-content: center; | |
| } |
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
| <!--Paste this into an HTML Widget in Elementor--> | |
| <div class="elementor-button-wrapper cta_included"> | |
| <a href="https://your-own-happy.link" class="elementor-button-link elementor-button elementor-size-sm"> | |
| <span class="elementor-button-content-wrapper"><span class="elementor-button-text">The Text On Your Button</span> | |
| </span> | |
| </a> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment