All Collections
Integrations
Shopify
Shopify personalization
How to style and modify the "Personalize design" button in my Shopify store?
How to style and modify the "Personalize design" button in my Shopify store?
Updated over a week ago

Styling the button on Gelato Edit Store Details page

If you subscribe to Gelato+, and use one of the following themes (Dawn, Debut, Studio, Craft, Simple), you will be able to style the button as follow: Enter your store's settings by clicking on Edit Store Details from the Stores section in the Dashboard.

edit_store_details.gif

Once on the Edit Store Details page, scroll down to the Personalization section. You will be able to change the text of the button as well as the color of the button's background, border, and text.

Personalize_Design_button_change.gif

You will also be able to do the same for the Add to Cart and Back to Shopping buttons that are displayed in the top left and right corners when your customer launches the in-store design editor during personalization.

Back_to_Shopping_Add_to_Cart_button_customization.gif

Hide or Show the Add to Cart and Buy it now buttons for product listings that allow Personalization

In the same section, you can choose to hide or show the Add to Cart and Buy it now buttons for product listings that allow for personalization.

hide_personalization_buttons.gif

Non-Gelato+ Gold: Styling the button with CSS

If you do not have a Gelato+ subscription, styling the button can be done via CSS. The Personalize Design button can be referred in CSS via ID selector #ge-personalize. Please refer to the documentation of your Shopify theme or contact the theme developer for more details on how to do that.

#ge-personalize {
  // any css property followed by value and !important sign:  width: 30% !important;
  color: black !important;
  // and so on, any customization you need.}

Tip: You can find more information on how to add custom CSS here.

An example of how it would look is shown below:

image-2020-10-08-01-16-08-084.png

Similarly, the 'Add to Cart' button can be customized via CSS in your store using the following:

#ge-add-to-cart {
// any css property followed by value and !important sign:
width: 50% !important;
color: black !important;
font-size: 30px;
// and so on, any customization you need.
}
Did this answer your question?