Hello!
How do I change the spacing between thumbnails on the portfolio page? I'd like to make the rows closer together.
Thanks
Hello!
How do I change the spacing between thumbnails on the portfolio page? I'd like to make the rows closer together.
Thanks
Hey,
To adjust the spacing between the rows, you can adjust the CSS to do this, open css/custom.css and add this code (replacing the pixel value of the padding as reqiuired):
.entry-content {
padding: 0 0 55px;
}
The above code will affect every instance of .entry-content (e.g. on regular post pages, archive pages etc) - if you only want this change on the Portfolio page, you can be more selective with the CSS like this:
#template-portfolio-overview .entry-content {
padding: 0 0 55px;
}
Hope this helps!
James
Thanks! How do I change the space between the columns?
I ask because in Chrome, the columns seem to have gotten messed up:
http://www.afimall.ru/shopping/?lang=en
Hey,
try to add following css code to custom.css (located in the folder "css"):
#template-portfolio-overview .one_third{
margin-left: 0 !important;
}You must log in to post.