Hello, excuse me but I would lijke to change the line height of the title of the posts in the BLOG page. What should I write down?
Thank you
Hey Anj27,
To change the line height, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
h3.slide-entry-title.entry-title a {
line-height: 20px !important;
}
Please adjust to suit.
Best regards,
Mike
Thank you!
Can I add one more question?
I need to change the size of the titles in the alternate content, exactly in the grey bar, on the left of the breadcumbs. In one page the title “Chi sono” is big. In the blog page is very small.
Can you help me?
Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.title_container .main-title a {
font-size: 40px !important;
}
This makes the “Blog” title large also.
Best regards,
Mike
Thank you.
But I noticed the the size of the grey bar (title container) is different in the two pages. How can I setthe same height for this section?
Hi,
Add this to quick css:
#top .title_container .container .main-title.entry-title{
top:10px!important;
}
#top .title_container .container {
height:76px!important;
}
Best regards,
Jordan Shannon