Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Need help to customize variants button in Dawn theme Product page

Need help to customize variants button in Dawn theme Product page

TheLivingCo
Explorer
87 0 17

Need help to customize variants button in Dawn theme Product page. I have shared the S.S. below like what i need to customize variants button.

 

variant .png

The Living Co.
Replies 2 (2)

akshay_bhatt
Shopify Partner
115 11 13

hi @TheLivingCo ,

it can be done by changing HTML and css code:

add HTML:

<button class="variant-button">{{ variant.title }}</button>

add css below:

.variant-button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.variant-button:hover {
  background-color: #0000ff; /* Change to your desired hover color */
}

 

 


Got it! If you found my suggestions helpful, please consider liking or marking it as a solution.
Your feedback is appreciated! If you have any more questions or need further assistance, just let me know.

 

Regards

Akshay Bhatt

 

 

- Need a Shopify Specialist?
- Custom Design | Advanced Coding | Store Modifications
Email us
TheLivingCo
Explorer
87 0 17

Hi Akshay,

 

where to add this code in liquid file

The Living Co.