Code: Select all
a, a:hover, a:active, a:visited, a:focus {
text-decoration:none;
}
Code: Select all
text-decoration: underline
Code: Select all
text-decoration: none
Code: Select all
text-decoration:underline
Code: Select all
text-decoration:none
Code: Select all
a, a:hover, a:active, a:visited, a:focus {
text-decoration:none;
}
Code: Select all
text-decoration: underline
Code: Select all
text-decoration: none
Code: Select all
text-decoration:underline
Code: Select all
text-decoration:none
The cache makes no difference and I don't use a personal style.
Yep, both caches.Mannix_ wrote: Thu Aug 29, 2024 4:36 pm Just to make sure you cleared your browser cache not the one in ACP??
I'll PM you a link.
Code: Select all
.postlink {
border: none;
}
OK, where should I add that? In links.css?Mannix_ wrote: Thu Aug 29, 2024 4:56 pmaddingshould fix thatCode: Select all
.postlink { border: none; }
Code: Select all
.postlink {
text-decoration: none;
border-bottom: 1px solid transparent;
padding-bottom: 0;
}
.postlink:hover {
text-decoration: none;
}
Code: Select all
.postlink {
text-decoration: none;
border: none;
border-bottom: 1px solid transparent;
padding-bottom: 0;
}
.postlink:hover {
text-decoration: none;
border: none;
}
Code: Select all
border-bottom: 1px solid transparent;
In such a case, using a child style, this type of error would not occur during updates.Bruce Banner wrote: Thu Aug 29, 2024 5:06 pm Sorry, guys, I remember now having to change that postlink code before. Totally forgot about it. Oh well, problem solved now. Thanks.
Sorry, having difficulty understanding you. I don't know what you mean by a "child" style.ssl wrote: Thu Aug 29, 2024 5:40 pm In such a case, using a child style, this type of error would not occur during updates.
Code: Select all
.postlink {
border-bottom-color: #368AD2;
color: #368AD2;
}
.postlink:visited {
border-bottom-color: #5D8FBD;
color: #5D8FBD;
}
Code: Select all
.postlink {
color: #368AD2;
}
.postlink:visited {
color: #5D8FBD;
}
Good idea.bennybernaer wrote: Thu Aug 29, 2024 6:26 pm It might be an idea to place custom css in a custom.css file. This way you can't forget it anymore.