Mar 27, 2025 10:06 pm
Hi,
How can I change the padding for the wpforo widgets?
The code in widgets.css is this:
#wpforo .wpforo-widget-wrap .wpforo-widget-content, .wpforo-widget-wrap .wpforo-widget-content {
padding: 10px 1px 20px 1px!important;
margin: 0;
}
And because it has !important; I'm not able to override it with custom css.
How can I change this?
thx
2 Replies
Mar 28, 2025 11:13 am
Hi,
Use this code:
#wpforo .wpforo-widget-wrap .wpforo-widget-content > ul li{
padding: 15px !important;
}
The codes should be inserted in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea.