Hi!
I want to reduce the space in the post titles.
The title should be closer to the picture and the space should end after the title (below).
Take a look here: http://www.geri.at and you will see what I mean
Thnx in advance
Geri
edit: I tried this:
.threecol .entry-container {
padding: 0 0 0 0;
}
but I want ist smaller…
-
This topic was modified 9 years, 8 months ago by Geri.
This code should do the job:
.threecol .entry-container {
padding-top: 0;
}
It works – but still there is space below the title.
Is there a chance to reduce it a bit more?
Thnx!
The addition of this CSS should also remove the bottom margin:
.threecol .entry-title {
margin-botton: 0;
}