How to Hide OneTap Toolbar in Page Builder Mode

How to Hide OneTap Toolbar in Page Builder Mode (Elementor, Bricks, Oxygen...)

Copy & Paste the CSS for the Builder you use

Elementor

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* Elementor Builder */
body.elementor-editor-active .apop-container-toggle {
  display: none !important;
}
				
			

Bricks Builder

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* Bricks Builder */.bricks-is-editing .onetap-container-toggle {display: none !important;}


				
			

Oxygen Builder

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* Oxygen Builder */.oxygen-builder-body .onetap-container-toggle {display: none !important;}


				
			

WPBakery

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* WPBakery (Visual Composer) */
body.vc_editor .apop-container-toggle {
  display: none !important;
}
				
			

Beaver Builder

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* Beaver Builder */
body.fl-builder-edit .apop-container-toggle {
  display: none !important;
}
				
			

Divi Builder

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* Divi Builder */
body.et-fb .apop-container-toggle {
  display: none !important;
}
				
			

Thrive Architect

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* Thrive Architect */
body.tve_editor_page .apop-container-toggle {
  display: none !important;
}
				
			

SiteOrigin Page Builder (Backend Preview)

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* SiteOrigin Page Builder (Backend Preview) */
body.siteorigin-panels-live-editor .apop-container-toggle {
  display: none !important;
}
				
			

SeedProd Landing Page Builder

Against a deep black background, three bold circles—red, yellow, and green—are evenly stacked in a vertical line on the left side. Each circle stands out clearly with solid color and crisp edges, reminiscent of traffic lights or control buttons for ease of recognition. To the right, large white capital letters spell “CSS” in a clean sans-serif font, providing high contrast for readability. The arrangement mimics an accessibility toolbar interface familiar to many WordPress users: straightforward controls grouped together with clear labeling to support navigation for people with varying needs.
				
					/* SeedProd Landing Page Builder */
body.seedprod-builder-active .apop-container-toggle {
  display: none !important;
}