Please help,
My store aesthetics look really bad.
-
Font is too large
-
Buttons are too big
-
Content is not aligned right
Please have a look the urls for reference:
Assistance appreaciated
Please help,
My store aesthetics look really bad.
Font is too large
Buttons are too big
Content is not aligned right
Please have a look the urls for reference:
Assistance appreaciated
To improve the aesthetics of your store by adjusting the font size, button size, and content alignment, you can make changes to the theme’s CSS. Here’s a general approach to address these issues:
Access the theme editor: Go to your Shopify admin dashboard and navigate to “Online Store” → “Themes”. Find your current theme and click on the “Actions” dropdown, then select “Edit code”.
Locate the CSS file: In the theme editor, look for the file that controls the CSS styles. This is typically named theme.scss.liquid, styles.scss.liquid, or similar. Open it in the code editor.
Adjust the font size: Search for the CSS selector that targets the desired font and adjust its font-size property. For example, to reduce the font size of the entire page, you can use the following CSS:
body {
font-size: 14px;
}
You can change the 14px value to a size that suits your preference. Make sure to adjust specific font selectors as needed.
padding or font-size properties to control their size. For example, to reduce the button size, you can use the following CSS:button {
padding: 8px 16px;
}
8px and 16px values as per your requirements. You may need to target specific button selectors to modify their size.Thank you for the response.
I can’t seem to locate the files you mentioned as specific to my store. I can’t seem to find any css related filed. Should I be looking to theme.liquid?