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
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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;}