Link to home
Start Free TrialLog in
Avatar of Larry Vollmer
Larry Vollmer

asked on

CSS problem

I have a polling widget on this site: http://tinyurl.com/964h9mm

underneath the poll there are two thumbnails, and underneath those thumbnails there is about 50PX of padding. I need to remove that but cannot figure out where it is coming from. The .widget class has 20px of bottom padding, but even when I remove that there is still too much space. Any idea what is causing this?
Screen-shot-2012-09-05-at-10.22..png
Avatar of Gary
Gary
Flag of Ireland image

Add margin:0 to H1
Avatar of Larry Vollmer
Larry Vollmer

ASKER

on which line?
nevermind, misread what you wrote. I added that line, but there is still 25-30PX of space I cannot account for.
SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You have padding here which when removed also reduces the spacing

#sidebar .widget, #footer .widget {
...
    padding-bottom: 20px;
Thanks, I did not realize there was white space built into the image! Split points for helpful answers.
You are welcome - thanks for the points although GarC123 had the answer first and gave much more on this question - I would have given him the accepted solution and majority of points.