how to update my Symmetry theme keeping the same codes?

Hi,

Could you please guide me on updating my Symmetry theme while keeping my custom code intact?

Additionally, how can I increase the font size for the price display?

Thank you for your assistance.

Best regards,

Tony

Hello @Tony1701

You need to add the latest version of the theme in your store and then manually add the changes in new theme.

Here is the refrence link: https://help.archetypethemes.co/en/articles/2767?_gl=116nwm9r_gaMjEwMjI3ODQ3MC4xNzIxODg4MjQ4_ga_EWBMPLPJX3*MTcyMTg4ODI0Ny4xLjEuMTcyMTg4ODI0OC41OS4wLjA.

Thanks

Hello @Tony1701

  1. To increase the font size for the price display
    Go to online store ---------> themes --------------> actions ------> edit code------->main.css
    and add this code at the end of the file.
.product-price--block, .product-price--block .price, .product-price--block .price__default {
font-size: 22px;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

Hi,

I went to Asset → style.css.liquid → Paste it code but it does not work on my end.

I tried it both ways:

.product-price–block, .product-price–block .price, .product-price–block .price__default {
font-size: 22px;
}

.product-price–block, .product-price–block .price, .product-price–block .price__default {
font-size: 22px !important;
}