Plugin Author
RazyRx
(@razyrx)
Hello,
What exactly CSS code you are trying to use?
Regards,
Oleg
I would like to reduce the vertical space between the filter checkboxes.
Have a look at this screenshot: https://prnt.sc/xpPJkNwNfC4L
I tried targeting these elements, but for sure I made same mistake.. 🙁
.bapf_sfilter ul li label {
margin-bottom: 13px;
font-size: .9em;
font-weight: 300;
}
.bapf_sfilter ul {
margin-bottom: 10px;
}
Plugin Author
RazyRx
(@razyrx)
Hello,
It seems this space added with theme.
You can try to remove it for this elements
.bapf_sfilter ul li {
padding: 0!important;
margin: 0!important;
}
Regards,
Oleg
Yes it works thanks. I just change at -10px.
.bapf_sfilter ul li {
padding: -10px!important;
margin: -10px!important;
}