Skip to content

Instantly share code, notes, and snippets.

@adeel-raza
Last active April 28, 2023 23:17
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 adeel-raza/a250d8e32c205e9c3710c6f81e91d6f2 to your computer and use it in GitHub Desktop.
Save adeel-raza/a250d8e32c205e9c3710c6f81e91d6f2 to your computer and use it in GitHub Desktop.
Customize the look and feel of the Zoom WordPress Plugin on your specific site with these CSS rules. Add it to your Theme’s Custom CSS option
/* Hide the back arrow on top of the meeting window and join form */
.zoom-window-wrap .go-back-icon {
display: none;
}
/* Center align Zoom WP form */
.zoom-window-wrap .meeting-view > div {
text-align: center;
}
/* Center Align Zoom Meeting Join Buttons */
.zoom-window-wrap .join-btn-block {
text-align: center;
}
/* Add custom styling for meeting join buttons */
.zoom-window-wrap .join-btn-block button {
}
/* Zoom Meeting Window */
.zoom-window-wrap .zoom-iframe-container #websdk-iframe {
/* Your custom styles here */
}
/* Countdown title */
.zoom-window-wrap .zoom-meeting-countdown .countdown_title {
/* Your custom styles here */
}
/* Countdown text */
.zoom-window-wrap .zoom-meeting-countdown li {
/* Your custom styles here */
}
/* Countdown bottom text */
.zoom-window-wrap .zoom-meeting-countdown li p {
/* Your custom styles here */
}
/* Button above Countdown */
.zoom-window-wrap .zoom-meeting-countdown .register-meeting-btn button {
/* Your custom styles here */
}
/* Redirected text below Countdown */
.zoom-window-wrap .zoom-meeting-countdown .redirected-text {
/* Your custom styles here */
}
/* Buttons on Meeting Page */
.zoom-window-wrap .meeting-view .zoom-link {
/* Your custom styles here */
}
/* Join via App on Meeting Page */
.zoom-window-wrap .meeting-view .join-link {
/* Your custom styles here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment