Question

I'm working on this site https://stagetoday.squarespace.com/ .

In the left bottom corner, there is a link, but I can't remove the text-decoration:underline when I hover over it.

I tried text-decoration:none and text-decoration:none!important but it still stays.

Can anyone help me?

Was it helpful?

Solution

It is a border

#bottomBar a:hover {
  border: none;
}

or only this link

.sqs-block-content a:hover {
      border: none;
 }

OTHER TIPS

Actually, it's not an underline it's this:

#topbar a:hover, #container a:hover, #bottomBar a:hover {
color: #999;
border-color: #999; /* here */
-webkit-transition: border 0s ease-out;
-moz-transition: border 0s ease-out;
-o-transition: border 0s ease-out;
transition: border 0s ease-out;
}

Just remove the border declarations.

you have to do :

border-bottom: 1px solid transparent;

on your file site.css on line 8096 you have this. it's not an underline property but a border bottom attribute.

change this property instead.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top