Hi,
I want to reduce the size of spaces between Widgets in my blog posts. How may I do that?
Thanks in advance!
Hi Sadegh!
Seems like you have added following code to Quick CSS and resolved it? :)
.sidebar .widget {
background-color: white !important;
padding: 5px;
}
Best regards,
Yigit
Hi Yigit,
Yes I found your answer in one another topic and used that code.
Although this code was helpful for me, but I think there is a conflict between “this code” and “Dimensions values”.
When I had 60-40 in dimensions values, adding or reducing the padding didn’t work.
But now, when I adjust it to 70-30 in dimensions values, it seems to work.
(P.S: I already mentioned this conflict in this topic too. As there is another problem with that too)
Hey!
Please use this CSS
.sidebar .widget {
padding: 5px 0 5px 0!important;
}
Best regards,
Vinay
Thank you Vinay