Hello,
I have the following CSS, that specifies another underline style:
.inside-article a {
color: black;
padding: 0px 2px;
border-bottom: 2px solid #39c;
text-decoration: none;
background-color: transparant;
padding-bottom: 1px;
transition: all .3s ease-in-out;
}
.inside-article a:hover {
background-color: #57bae5;
}
I would like to exlude the class .context-menu-rechterkantlijn.
I tried different settings with :not(.context-menu-rechterkantlijn) but I can’t find the correct solution.
The class .context-menu-rechterkantlijn is the submenu at the right side of the page.
Can you tell me how I can accomplish the exclution of the class .context-menu-rechterkantlijn?
Thanks Henk.