Hi, I have a problem with the cuztomization of this section (it shows up when we click add in the product cart under customer also bought), I have no idea how I can set the right size of the title ie 30px for computers and 23px for mobile, remove the sku, round all the corners to 5px.
Hi @Mati124
Check this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
h1.product__title.ff-heading.fs-heading-4-base.fs-heading-3-base-ns {
font-size: 30px !important;
}
@media only screen and (max-width: 749px){
h1.product__title.ff-heading.fs-heading-4-base.fs-heading-3-base-ns {
font-size: 23px !important;
}
}
.product__sku.fs-body-25.t-opacity-60 {
display: none;
}
-
And save.
-
Result:
-
Just to clarify, which all around corner you like to change?
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
i want to round out the space to select size, quantity and photo
and thank you for the changes you have made
just out of curiosity how do you know what selector to use for the css code of a particular section on a page
and add to bag button


