Hi, how do I get rid of the underline on links? I tried removing the hover in css, works on other parts in the sidebar area but not in this widget....tks
Hi, how do I get rid of the underline on links? I tried removing the hover in css, works on other parts in the sidebar area but not in this widget....tks
Hi Sam,
These underlines come from your theme CSS. Use the code below to turn this off for wpDiscuz widgets. Navigate to Dashboard > Comments > Settings > Styling admin page and put this CSS code in Custom CSS Code textarea. Then delete all caches and do Ctrl+F5 on front-end:
.colors-custom .widget .wpdiscuz-widgets-content a{box-shadow: none;}
.colors-custom .widget .wpdiscuz-widgets-content a:hover{box-shadow: none;}
I don't see that. The link opens a page without sidebar.
In any case you can try this one too:
.widget .wpdiscuz-widgets-content a{box-shadow: none;}
.widget .wpdiscuz-widgets-content a:hover{box-shadow: none;}