Please, if this can be fixed with code, please tell me how to do it

Hello. If this can be fixed with code, please tell me how to do it.

  • Remove underlining from text links in the footer and contacts.

  • Make text size smaller (medium) on pages. This is the title that I write on the ‘Pages’ in the ‘Online Store’. It’s H1 by default and I can’t change it.

  • Insert an email subscription in the footer instead of a photo on the right. Unfortunately in my theme I can only place it in the middle. I would also like to place text ‘© 2023 Powered by Shopify’ under payment cards.

  • Insert filled button in the slider on the main page (next to the outlined button).

  • On the product page, move the size and color above the quantity indicator. I changed the size and color design with a plugin, so I can’t move it without code. Also, I would like the size/color heading to be in the same style as the quantity. Or maybe you can tell me how to change the size and color style without a plugin, using the code. I made them square and outlined (with a red stroke).

  • Also, I can’t change the text of the “Buy it now” button to another language. Please tell me where it can be changed.

1 Like

Hello @Alma22

Please provide your store URL and, if it is password protected, please share the password so I can review it and provide a solution.

https://853e31.myshopify.com/

Hello @Alma22

Your store is password protected, please share the password so I can review it and provide a solution.

pithau

Hello @Alma22

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.rte a {
    text-decoration: none;
}
.footer-block__details-content .list-menu__item--link:hover, .copyright__content a:hover {
    text-decoration: none !important;
}

For Product Page:

label.quantity__label.form__label {
    font-size: 14px !important;
    font-weight: 700 !important;
}

Thank you very much :folded_hands: I will try this.

1 Like