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!
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024