Spotlight Theme Help w/ links

Solved

Spotlight Theme Help w/ links

Toast
Tourist
7 0 4

Hi there! New with shopify and trying to figure out how to edit some things, not very familiar with coding or CSS.

 

I'm trying to change it so when I hover over everything it changes to an underline. The main navigation menu does this because it was defaulted, but I want it to do it with the little icons on the top right (cart, search and profile). As well as the collection links on the front of my main page. Right now when I hover over them the arrow moves on the text, and the icons get a little bigger and blur.

 

Screenshot 2024-09-22 170739.pngScreenshot 2024-09-22 170746.png

 

Using theme "spot light." 

 

Thank you so much!

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
8239 1977 2425

This is an accepted solution.

Thanks for the info, check this one.

 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

{% if template.name == 'index' %}
<style>
.header__icons {
    position: relative;
}
.header__icons .svg-wrapper:hover:after {
    content: '';
    position: absolute;
    top: 80%; 
    left: 55%;
    width: 35px; 
    height: 1px;
    background-color: black; 
    transform: translateX(-50%); 
}
.header__icons {
    padding-right: 0;
}

a.full-unstyled-link:hover {
    cursor: pointer;
    border: none;
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: .3rem;
    color: rgb(var(--color-link));
    background-color: transparent;
    font-family: inherit;
}
</style>
{% endif %}

 

And save. 

Result:

Made4uoRibe_0-1727089944377.pngMade4uoRibe_1-1727089954380.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
8239 1977 2425

Hi @Toast 

So do you like to add the underline hover on the icons and the other links in the homepage? Would you mind sharing your store URL? Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Toast
Tourist
7 0 4
Made4uo-Ribe
Shopify Partner
8239 1977 2425

This is an accepted solution.

Thanks for the info, check this one.

 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

{% if template.name == 'index' %}
<style>
.header__icons {
    position: relative;
}
.header__icons .svg-wrapper:hover:after {
    content: '';
    position: absolute;
    top: 80%; 
    left: 55%;
    width: 35px; 
    height: 1px;
    background-color: black; 
    transform: translateX(-50%); 
}
.header__icons {
    padding-right: 0;
}

a.full-unstyled-link:hover {
    cursor: pointer;
    border: none;
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: .3rem;
    color: rgb(var(--color-link));
    background-color: transparent;
    font-family: inherit;
}
</style>
{% endif %}

 

And save. 

Result:

Made4uoRibe_0-1727089944377.pngMade4uoRibe_1-1727089954380.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Toast
Tourist
7 0 4

Thank you SO much! And for being so fast. Thank you!