steelsjh
asked 11 years ago

Is there a way to reduce the amount of space after the social-media share buttons that preceed a post and the start of the next post on the front page?

 

 

5 Answers
DominicStaff
answered 11 years ago

Please send me a screenshot for further checking.
Regards,
Dominic

steelsjh
answered 11 years ago

URL: http://www.commoncapital.ca

Screenshot attached.

 

Reduce space

DominicStaff
answered 11 years ago

To resolve this problem, you can log in to Dashboard > Appearance > Editor > open the style.css file, add the following code:

 
.content-list .hentry {
   margin-bottom: 0;
}

Regards,
Dominic

Jerome Kang
replied 10 years ago

hi I also wanted to minimize the space between post. I added the code you suggested above but it didn’t change anything.

DominicStaff
answered 10 years ago

@Jerome Kang
To minimize the space between post in the DW Minion. You can log in to Dashboard > Theme > Customize > Custom Code then add the following code to the “Header Code”

<style>
.content-list .hentry {
    margin-bottom: 10px !important;
    padding-top: 10px !important;
}
</style>

If you still face there issue, You can send me your site for further checking.

thierry chal
replied 9 years ago

Thanks fo this, it helps me a lot !another question, how can i move down a little, the first article on homepage?

Dominic Staff
replied 9 years ago

Please add the following code to the style.css file:
@media (min-width: 980px) {
#primary {
padding-top: 100px;
}
}
Hope this helps !

thierry chal
replied 9 years ago

work perfectly ;-)That is the code to do the same for the right column?And is it possible to reduce blank space on top of the blog ( all the three column together)?

DominicStaff
answered 9 years ago

you can the following code:

@media (min-width: 980px) {
#primary {
    padding-top: 100px;
}
#secondary {
    padding-top: 100px;
  }
}

Hope this helps !

voiper
answered 9 years ago

Hi,
Could you please tell me what I need to do to reduce the space between the date of the post and the body of post?
 

DominicStaff
answered 9 years ago

You can add the following code to the style.css file:
.entry-meta { margin-bottom: -30px; }
Hope this helps !

Powered by DW Question & Answer Pro