Home Forums WoodMart support forum Request a Quote Button

Request a Quote Button

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #656661

    marketing-7364
    Participant

    Hi, I’ve installed a request a quote plugin, but wanted to know if there is a way i can do this with code rather? if not if i can have code to make the button look like my themes/

    #656766

    Hello,

    Yes, it’s possible, but moderate custom coding is required for this. But you can easily change the style of the Request a Quote button to match the theme. You can adjust the colors, border radius to match your design.

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

    .yith-ywraq-add-button .add-request-quote-button.button, button#ywraq_cart_quote, button#ywraq_checkout_quote_button {
        background-color: #ff6600 !important; /* Change to your theme’s button color */
        color: #ffffff !important;
        border-radius: 6px !important;    
    }
    
    .yith-ywraq-add-button .add-request-quote-button.button:hover, button#ywraq_cart_quote:hover, button#ywraq_checkout_quote_button:hover {
        background-color: #000000 !important; 
    }

    Best Regards

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