Skip to content

Instantly share code, notes, and snippets.

@thetwopct
Last active June 9, 2021 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thetwopct/0c26e45e2ed0ffcbfb917890bd0f2313 to your computer and use it in GitHub Desktop.
Save thetwopct/0c26e45e2ed0ffcbfb917890bd0f2313 to your computer and use it in GitHub Desktop.
CSS Snippets for Tax Toggle for WooCommerce
/* CSS Snippets for Tax Toggle for WooCommerce. Add these to your CSS file or to your theme via Customizer. */
/* Move down on left */
#wcvat-toggle {
top: 90%;
}
/* Move to right side of screen */
#wcvat-toggle {
left: unset;
right: 0;
}
/* Move to right side of screen and closer to header */
#wcvat-toggle {
left: unset;
right: 0;
top: 100px;
}
/* Move to right side of screen and closer to header (if header is sticky) */
#wcvat-toggle {
left: unset;
right: 0;
top: 100px;
z-index: 9999;
}
/* Top left */
#wcvat-toggle {
top: 0px;
z-index: 9999;
}
/* Top right */
#wcvat-toggle {
left: unset;
right: 0;
top: 0px;
z-index: 9999;
}
/* Bottom right */
#wcvat-toggle {
left: unset;
top: unset;
right: 0;
bottom: 0;
z-index: 9999;
}
/* Bottom left */
#wcvat-toggle {
top: unset;
bottom: 0;
z-index: 9999;
}
/* Note: You may be able to remove z-index from these CSS examples depending on your theme */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment