Hi There,
Let me clarify this first, this area here is the div.entry-wrap
The green highlight around it is the padding, as you can see the top padding of it is partially a culprit of your empty space issue (the remaining space is the top margin of your headline which you can get rid of by adding a class mtn to your headline).
You can use the div.entry-wrap as the selector to formulate a custom CSS to target this wrapper.
for example:
div.entry-wrap {
background-color: #f1f1f1; /*change the background*/
padding-top: 0; /*zero out the top padding*/
}
Keep in mind that the .entry-wrap is a site wide class. If you want this code to affect only a specific page, please add the code on the page’s CSS. Otherwise add the code on Theme Options > CSS
Now for the sidebar, see the highlighted part that is just exactly the width of your sidebar, so if you add a background-color to it, it will only cover that portion as well.
To apply a custom CSS to your sidebar you need to use this selector.
.x-sidebar.right {
/*some css property here*/
}
Currently your sidebar width is width: 17.536945%; you can bump that to 21% to make the sidebar closer to the entry-wrap and then a padding: 4%; around your sidebar to give your content some breathing room. Again this is a site wide class add the code on page’s CSS if you want this code to affect this specific page only.
That is because on your site the Most Popular and Most Popular Tags have the same html mark-up (ul > li > a) that is why they have the same formatting, while the Life’s Truths has a different mark-up (p > a) and they actually have there own styling in it.
Use this selector to style the Most Popular and Most Popular Tags
.x-sidebar.right .widget ul li a,
.x-sidebar.right .widget ol li a,
.x-sidebar.right .x-comment-time {
/*some custom CSS here*/
}
And this is for the Life’s Truths, this seems to be from a 3rd party plugin keep in mind that we can not provide support for 3rd party plugins.
.x-sidebar.right .textwidget p a {
/*some custom CSS here*/
}
To remove the underline apply a custom CSS with a property of border-bottom: 0; to it. Use the selectors I’ve provided above to format each of this widgets.
He is simple saying to add a class man to your headline to get rid of the margins.
example:
<h2 class="man">Lorem</h2>
The man means margin all no. See more about this utility class here, learn how to use this classes as this would come very handy for adjusting the spacing between your elements.
Hope this shed some lights,
Cheers!