skip to Main Content

Is there a way where I could change the normal plain buttons on the header like this one? (Image bellow) I have the debut theme and working on Shopify

image

2

Answers


  1. Add this code into your store css file and change class name where you want to apply image on button. Also you have to add button image into your store setting=> files

    After that you have to copy image path and put into background-image ="change here image " in css code

    <input type="submit" class="button">
    button {
        background-image: url(https://cdn.shopify.com/s/files/1/1023/3903/files/Capture12345.png?v=1652449658);
        background-repeat: no-repeat;
        background-size: cover;
    }
    

    enter image description here

    Login or Signup to reply.
  2. you can just simply add background:url(‘image-url’) on button

       { 
        background: url('image-url');
        background-position: center;
        background-color: transparent;
       }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search