Site logo

Archived topic

How could I exclude the CSS for hyperlink on this place?

3 replies · Started by Trạng on November 17, 2021

Viewing posts 1–4 of 4

Hi everyone, how could I exclude this CSS styling for the "show/hide" text on Table of content? (Screenshot here)

This is the CSS code I use for my hyperlink:

/* Link hover color */
.entry-content p a {
    border-bottom: 2px solid #465362;
}
.entry-content a:hover {
     color: #333333;
}

Hi there,

add this CSS to you remove the border from that element:

#toc_container span.toc_toggle a {
    border-bottom: unset;
}

Thank David so much! It works like a champ :)

Glad to hear that

This archived topic is closed to new replies.