Close Button Mobile (deprecated)

Close Button Mobile (deprecated)

How to add the code

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.
				
					@media screen and (max-width: 600px) {
  nav.apop-accessibility.apop-plugin-onetap .apop-container .apop-accessibility-settings header.apop-header-top .apop-close {
    left: auto !important;
    right: 20px !important;
  }
}

				
			

2nd Solution

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.
				
					@media only screen and (max-width: 576px) {
  nav.onetap-accessibility.onetap-plugin-onetap .onetap-container .onetap-accessibility-settings header.onetap-header-top .onetap-close {
    left: auto !important;
    right: 20px !important;
  }
}