For example, the default color of the check for order bumps is blue - can this be changed?
Hi @banshii.admin, and welcome to the community! ![]()
The default blue checkmark for checkboxes comes from the browser’s native styling, but you can override it with CSS.
The simplest way to change the color of the checkbox for the order bump is to use the accent-color property:
- Go to the Custom Code panel.
- In the CSS section, paste the following code and replace
greenwith your desired color:
.order-bump .ob-header input[type="checkbox"] {
accent-color: green;
}
This will change the color of the checkbox without replacing the checkbox entirely.
— Abe Y.
Funnelish Team
1 Like