[go: up one dir, main page]

Vepaar Logo

This guide will show you how  you can easily tailor the look and feel to your exact preferences with our Custom Code feature.

Vepaar provides you with two languages i.e. JavaScript and CSS to do any customization. They allow you to customize the appearance of your theme without the need to create a child theme or worry about theme updates overwriting your customizations. 

Steps to add Custom Code

Customcode1
  • There you will find Two languages to choose from. 
Cc2

Custom CSS  

Here is an example of a Custom CSS to hide the Login button, change the color of the footer, hide the chat icon, and remove login dialogue at the checkout on the Store.  

body{
    .footer{
        background-color: red !important;
    }

    .footer .chat-launcher{
        display: none !important;
    }    

    .overflow-hidden.relative {
         border: none !important;
    }       
    
    .overflow-hidden.relative .p-6 { 
        display: none !important;
    }
    
    .header .login{
        display: none !important;
    } 
}

Before 

Code 3

After 

Code 4
Code 6