Last active
April 10, 2019 19:50
-
-
Save UeldoTheme/c28ece170201d9c0bd4e2fa8550e9dc6 to your computer and use it in GitHub Desktop.
This file contains 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
# all params example | |
[custom_buttons_shortcode href="http://example.com" target="_self" class="extra-class"]Hello![/custom_buttons_shortcode] | |
# only "href" is required | |
[custom_buttons_shortcode href="http://example.com"]Hello![/custom_buttons_shortcode] |
This file contains 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
.custom-buttons-shortcode-container { | |
margin: 30px 0; | |
} | |
.custom-buttons-shortcode-container .custom-buttons-shortcode { | |
display: inline-block; | |
text-align: center; | |
padding: 10px 25px; | |
background: #e73a30; | |
color: #fff; | |
font-size: 17px; | |
-webkit-border-radius: 2px; | |
-moz-border-radius: 2px; | |
border-radius: 2px; | |
border-bottom: 2px solid #b7241b; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment