What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: Remove underline from links in header menu -Dawn theme

Solved

Remove underline from links in header menu -Dawn theme

Lextensions88
Excursionist
16 0 5

How do I remove the underline from my policy links at the bottom of my page

98F21D9D-489D-4356-B56F-F68BFC9E38EC.png

Accepted Solution (1)
ZestardTech
Shopify Partner
5912 1067 1413

This is an accepted solution.

Hello there,

 

1. In your Shopify Admin go to online store > themes > actions > edit code

2. Find Asset >base.css and paste this at the bottom of the file:

.rte a:hover{
	text-decoration: underline;
}
.rte a{
    text-decoration: none;
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

View solution in original post

Replies 20 (20)

Ujjaval
Shopify Partner
1242 197 213

@Lextensions88  Share your store link

Lextensions88
Excursionist
16 0 5

ZestardTech
Shopify Partner
5912 1067 1413

Hello there,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset >base.css and paste this at the bottom of the file:

.header__menu-item:hover span {
text-decoration: none;;
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Lextensions88
Excursionist
16 0 5

Thank you that was a code I actually tried before posting, no luck!

f_malik
Shopify Partner
33 7 10

Hi Lextensions88, You need to add a simple css for this

 

.YOUR-POLICY-CLASS-NAME a{
text-decoration: none !important;
}

 

You can share your page link, then I can share exact css for this that you can add.

 

 

Lextensions88
Excursionist
16 0 5
ZestardTech
Shopify Partner
5912 1067 1413

Hello there,

please share me store password.

ZestardTech_0-1671603047789.png

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Lextensions88
Excursionist
16 0 5
ZestardTech
Shopify Partner
5912 1067 1413

This is an accepted solution.

Hello there,

 

1. In your Shopify Admin go to online store > themes > actions > edit code

2. Find Asset >base.css and paste this at the bottom of the file:

.rte a:hover{
	text-decoration: underline;
}
.rte a{
    text-decoration: none;
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Lextensions88
Excursionist
16 0 5

@ZestardTech it worked thank you!!(:

ZestardTech
Shopify Partner
5912 1067 1413

Thank you for your response. It's good to know that it's worked for you. Kindly feel free to get back to me if you need any further assistance.

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Lextensions88
Excursionist
16 0 5

@ZestardTech I have one last thing if you don’t mind. How do I add the colorful country icons? Such as these..

59C114EF-9058-4A6A-8791-560728FA9C47.jpeg

Username14
Tourist
7 0 1

how do i remove underline from links but in footer menu?

DigiDecoded
Shopify Partner
162 19 18

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Danish | Full Stack Developer @ Esire.Inc
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- Hire me for your next task! | Email | WhatsApp | Website
Username14
Tourist
7 0 1

https://eightballstyle.com/

 

passowrd: hello

DigiDecoded
Shopify Partner
162 19 18

DigiDecoded_0-1706697972784.png

 

are you talking about the this underline?

 

Danish | Full Stack Developer @ Esire.Inc
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- Hire me for your next task! | Email | WhatsApp | Website
Username14
Tourist
7 0 1

yes, in the "About us"

Ujjaval
Shopify Partner
1242 197 213

@Lextensions88 
Add below css into theme.liquid file before closing </body> tag 

<style>
.rte a{
    text-decoration: none;
}
.rte a:hover{
	text-decoration: underline;
}
</style>

Kani
Shopify Partner
468 125 232

Hi @Lextensions88 

 

Kani_0-1671601726534.png

 

1: Online store > themes > Actions > Edit code > Assets > base.css

2: paste at last

 

.footer-block__details-content.rte a {
    text-decoration: unset!important;
}

 

 

Hey!! ʕ ᵔᴥᵔ ʔ
Please click 'Like' and ' Accept as Solution' to encourage me to continue sharing my expertise. ♡
If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response. 🙂
Lextensions88
Excursionist
16 0 5

Didn’t work