I am trying to get rid of a whole lot of white space below one row of images contained in a sidebar widget. I'm referring to the four social networking icon in the right sidebar at
http://www.covermesongs.com. The images themselves do not contain the white space. I have tried the following fixes:
1. Change the margin from 15px to 0px here:
- Code: Select all
img {
border:0 none;
font-size:100%;
margin:0 0 15px;
outline:0 none;
padding:0;
}
Not only does this obviously affect all images, which I don't want, but it only removes about half of the white space anyway.
2. Change the padding of the widget box from 9px to 0px here:
- Code: Select all
.dbx-content {
margin:0;
overflow:hidden;
padding:5px 10px 9px;
}
Again, this not only affects all boxes, but only removes a fraction of that white space.
Any ideas? I would like the same padding/margin for the images at the top and bottom of the widget. Thanks!