Shopify themes, liquid, logos, and UX
Dear Community,
I would like to have dots as spacers in the top left (circled) instead of a slash. Is that possible?
And please remove the line on the right (circled)
Solved! Go to the solution
To replace the slash with dots as spacers in the top left and remove the line on the right, you can try the following steps:
1. Open your Shopify admin and go to "Online Store" > "Themes".
2. Find your theme and click on "Actions" > "Edit code".
3. In the left sidebar, locate and open the "theme.liquid" file.
4. Find the code that generates the separator in the top left (slash) and replace it with dots. It might look something like this:
```liquid
<span class="separator">/</span>
```
Replace it with:
```liquid
<span class="separator">•••</span>
```
This will display three dots as spacers.
5. To remove the line on the right, you'll need to locate the corresponding CSS code. Look for a class or ID associated with the line element, which could be something like `.line` or `#line`. Once you find it, add the following CSS code to hide it:
```css
.line {
display: none;
}
```
Save the changes.
6. Preview your store to see if the changes take effect. If needed, clear your browser cache or view your store in an incognito/private browsing window to ensure you're seeing the updated version.
Note: The specific code and CSS classes may vary depending on your theme. If you're having trouble locating the appropriate elements or making the changes, it's recommended to consult with a developer or the theme's support for further assistance.
This is an accepted solution.
Done!
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025