Skip to content

Instantly share code, notes, and snippets.

@zephyrmike
Last active July 12, 2022 23:11
Show Gist options
  • Save zephyrmike/5251e8a1281b2b09210634dca474dec2 to your computer and use it in GitHub Desktop.
Save zephyrmike/5251e8a1281b2b09210634dca474dec2 to your computer and use it in GitHub Desktop.
Styling a Podia embed button using the WP html block and css
/*
1. get the link embed code for your Podia product
2. add class="button" to the Podia embed code
3. paste the code inside a WordPress html block
4. edit the button css below to style your button
*/
.button {
background-color: #111111;
color: #ffffff;
padding: 16px 22px;
font-size: 16px;
font-weight: 700;
border-radius: 2px;
}
.button:hover {
background-color: #222222;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment