Reduce size of intro text space
- The topic ‘Reduce size of intro text space’ is closed to new replies.
Need help? Check out our Support site, then
Hi, is it possible to reduce the height of the intro text space with CSS?
The blog I need help with is: (visible only to logged in users)
Hi there,
Yes, that is definitely possible. You can add the following to your CSS menu in the Customizer:
@media screen and (min-width: 960px){
.intro-block {
padding-top: 10px;
padding-bottom: 10px;
}
}
The default padding is 75px, so play around with the number if the 10px in the above snippet doesn’t work for you.
Hope that helps!
That’s great – thank you.