Claim your freedom to choose the perfect partner for your multi-vendor journey.

FREEDOM25

Celebrate the festive season by giving your marketplace a powerful lift!

FESTIVE20

5.0.0
Something big is coming for marketplace admins… MultiVendorX 5.0 is almost here. Are you ready?
Be the first to explore all the game-changing features!
Power your marketplace dreams with unbeatable Black Friday deals!

MVXBLACK30

Supercharge your marketplace vision with unstoppable Cyber Monday deals!

MVXCYBER30

Holiday cheer, bigger savings
Take 25% off-because your marketplace deserves a gift too.

happyholiday

View Categories

Vendor setup wizard CSS change

Sometimes you want to apply custom CSS to change the colour of the setup wizard. For example, if you want to change the colour of the , add this code in the function.php of your theme :

add_action('mvx_vendor_head', 'custom_css_dashboard', 999);
function custom_css_dashboard() { ?>
    <style type="text/css">
        p.wc-setup-actions a.button-primary.button.button-large.button-next {
            background: green !important;
            border-color: green !important;
            text-shadow: 1px 1px green !important;
        }
        input.button-primary.button.button-large.button-next {
            background: green !important;
            border-color: green !important;
            text-shadow: 1px 1px green !important;
        }
        a.button.button-primary.button-large {
            background: green !important;
            border-color: green !important;
            text-shadow: 1px 1px green !important;
        }
    </style>
    <?php
}

The above code will give you modification like this :

For any additional css, you need to add the code after <style type=”text/css”> and before </style>

Leave a Reply

Shopping Cart
Scroll to Top