Need some basic help with Twenty Thirteen theme

sephiroth

New member
Oct 18, 2013
71
1
0
Hi all, I have a website which uses Twenty Thirteen and I had put some ads at the end of each individual posts. The problem is there is a large gap between the end of the post content and the ad. Here is an example of what I am talking about.

k6YZmlQ.jpg



Just wondering what css might allow this space to be adjusted. Cannot find it anywhere.


Thanks, let me know if you need more info.
 


Go to Appearance > Editor and click on 'Stylesheets' on the bottom right.

Find the following line:
Code:
.hentry {
	padding: 40px 0;
}

And change it to:
Code:
.hentry {
	padding: 40px 0 0;
}

Feel welcome to PM me if you are still having trouble.
 
Go to Appearance > Editor and click on 'Stylesheets' on the bottom right.

Find the following line:
Code:
.hentry {
	padding: 40px 0;
}

And change it to:
Code:
.hentry {
	padding: 40px 0 0;
}

Feel welcome to PM me if you are still having trouble.


Thank you that was very close to entirely fixing the issue PM sent!

edit: if anyone else is wondering, the fix worked, but affected all pages. I only need the changes to take place on the single post template.