Home Forums WoodMart support forum Woodmart “blue dot/check” color change

Woodmart “blue dot/check” color change

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #565109

    deividas15
    Participant

    Hello,

    It`s possible to change “blue dot/check” color ?

    This dot can be found in cart/checkout pages also in product page by choosing bundle product

    Thank you.

    • This topic was modified 6 months, 1 week ago by deividas15.
    • This topic was modified 6 months, 1 week ago by deividas15.
    Attachments:
    You must be logged in to view attached files.
    #565357

    Hung Pham
    Keymaster

    Hi deividas15,

    Thanks for reaching to us.

    Please add the following Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    input[type=radio],
    input[type=checkbox]{
      appearance: none;
      width: 13px;
      height: 13px;
      background-clip: content-box;
      border: 2px solid rgba(255,121,1);
      background-color: rgba(255,252,229,1);
    }
    
    input[type=radio]{
      border-radius: 50%;
    }
    
    input[type="radio"]:checked,
    input[type="checkbox"]:checked{
    	padding: 1px;
    	background-color: rgba(255,121,1);
      border-color: rgba(255,121,1);
    }

    Regards,

    #565439

    deividas15
    Participant

    Hello,

    Bundle products color change worked 🙂 1px padding was too much, 0.8px works perfectly.

    Unfortunately, check out circle with dot is still blue, I tried to inspect element, element have orange background, but its not visible 🙂 I tried to add !important into CSS, nothing changed.

    Thank you.

    #565691

    Hung Pham
    Keymaster

    Hi deividas15,

    Please clear browser cache and check again https://prnt.sc/TQIAHGdwtKM4

    Regards,

Viewing 4 posts - 1 through 4 (of 4 total)