Where do I find the code to change the height and the font size of the Intro/Teaser area. I've tried changing the H1 settings in the CSS files, but it won't change it in the header.
Also want to adjust the height of that area slightly.
Thanks,
Scott
(3 posts)
(2 voices)
Where do I find the code to change the height and the font size of the Intro/Teaser area. I've tried changing the H1 settings in the CSS files, but it won't change it in the header.
Also want to adjust the height of that area slightly.
Thanks,
Scott
Hello finn,
Navigate to Dashboard -> Persuasion -> General Settings -> Custom CSS and add this,
#intro { height: 200px; }
.intro_title { font-size: 30px !important; }
The first line is for setting a height to the intro area and the second line is for the size of the title. If you only want this done on a page by page basis then you'll need to add this in the HTML editor when editing your page,
<style type = 'text/css'>
#intro { height: 200px; }
.intro_title { font-size: 30px !important; }
</style>
Perfect! Thank you!
You must log in to post.