I have two questions: I am using Horizon as my core Shopify theme (a lot of editing), and I would greatly appreciate some help with editing the site. Firstly, how can I edit a curved square (submit button attached below) into a regular sharp square?
Secondly, instead of attaching a logo to my profile, I am using the business name and a different font (one of the available Shopify fonts). I would like to enlarge the logo, but I cannot do so in the theme settings section, as it relies on an uploaded logo (I cannot find the identical font, New York, online), so I was wondering whether there is a way to enlarge it.
If it’s only one specific button, you can inspect it in the browser and target that class instead.
For the text-based logo, Shopify treats that as a heading rather than an image, so the size is controlled by font styles, not the logo setting. Look for the header logo or site title CSS (often something like .header__heading or .site-title) and increase the font-size there:
.header__heading {
font-size: 32px;
}
You may need to adjust desktop vs mobile separately.
Also worth mentioning: I built Easy Edits, which lets you just click on things like buttons or header text and change styles visually, or even tell the AI what you want changed and it applies it for you. I’m the developer, and it’s designed for exactly these kinds of small but annoying tweaks.