I'm trying to change the spacing/padding between the adverts in the sidebar of my blog – http://golovegreece.com/. Currently, the spacing/padding is too wide. I think I've found the CSS code using Web Inspector. It gives me the following:
{
.sidebar .widget
float: left;
margin-bottom: 20px;
overflow: visible;
padding: 20px;
width: 260px;
}
In Web Inspector, when I turn off margin-bottom and padding it gives me the effect I'm after, which is to squeeze the ads together.
In the Quick CSS editor, I put in the following code
{
.sidebar .widget
float: left;
margin-bottom: 20px;
overflow: visible;
padding: 20px;
width: 260px;
margin-bottom: 0px;
padding: 0px;
}
But it doesn't take effect on the page.
What am I doing wrong here? Thanks














