Archived topic
Distance between top and headertext/image
3 replies · Started by Patrik on June 6, 2020
Hi,
Hope youre well! :)
I tried some css commands that I found on google but they didnt seem to do any difference.
Is it possible to "minimize the gap" between those two elements?
Printscreen: https://prnt.sc/suv5eu
Many thanks,
P
Hi there,
Can you do this first so I can take a closer look at the code:
https://www.screencast.com/t/A9AikiFVw
Hi,
Sorry for that Leo
Its done, I have now deactivated my Cache Plugin :/
Hi there,
you have this CSS in Customizer > Additional CSS:
.entry-title {
opacity: 100;
margin-top: 15%;
}
Then margin-top property is creating the space.
If you want that to only apply to the blog / archive pages then use this instead:
body:not(.single) .entry-title {
opacity: 100;
margin-top: 15%;
}