We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Format Drop Down Menu on Product Page Prestige Theme

Format Drop Down Menu on Product Page Prestige Theme

isSalon
Excursionist
53 0 13

Running Prestige theme and wondering how to format the drop down menu to have bigger white space and background and black border like example photo.

 

Store:  is-salon-yaletown.myshopify.com

 

Example:

Screenshot 2025-06-19 at 10.01.34 AM.png

 

Current:Screenshot 2025-06-19 at 10.01.56 AM.png

Replies 4 (4)

CodingFifty
Shopify Partner
1102 161 190

Hey! @isSalon,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.ColorDropdown {
    padding: 15px !important;
    margin-left: -7px !important;
}
.ColorSwatch__Radio:checked + .ColorSwatch {
    border: 5px solid white !important;
    outline: 2px solid black !important;
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
isSalon
Excursionist
53 0 13

Didn’t work 😞

Small_Task_Help
Shopify Partner
1144 55 112

Hi,

Hope this will help

- At theme.css.liquid, base.css, or global.scss.liquid, Add the Custom Styles

/* ===================================================
  Custom Styles for Drop-down Menu (Product Page) 
================================================== */
select {
  padding: 14px 16px; /* Bigger space inside the dropdown */
  background-color: #ffffff; /* White background */
  border: 2px solid #000000; /* Black border */
  border-radius: 4px;
  font-size: 16px;
}

select:focus {
  outline: none;
  border-color: #000000;
}
To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Developers India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
isSalon
Excursionist
53 0 13

This didn't work either.