General
Customize
Support
Features you asked for
Last update April 2025
We listened to your feedback and added this feature by popular request.
Customize the Toolbar Icon
You can now fully customize the OneTap toolbar icon to better match your website’s design.
You’ll find the settings in your WordPress dashboard under:
- Dashboard
- OneTap
- Settings
- Design

Want to customize the icon size in pixels?
Please select the smallest available icon size in your settings.
Then, insert the following CSS code into your WordPress site You can freely adjust the width
, height
, and padding
values to set the icon size exactly as you like.
- WordPress Dashboard
- Design
- Customizer
- Custom CSS
- Copy & Paste the Code

.apop-container-toggle .apop-toggle img.design-size1 {
padding: 5px !important; /* Adds 5px of inner spacing around the icon */
width: 40px !important; /* Sets the icon width to exactly 40px */
height: 40px !important; /* Sets the icon height to exactly 40px */
}