Customize Text in Header
- The topic ‘Customize Text in Header’ is closed to new replies.
Need help? Check out our Support site, then
Hello,
I’m trying to make the text in my header larger, but the HTML codes that I’m using aren’t reflecting any changes. Can anyone assist, please?
The blog I need help with is: (visible only to logged in users)
You can increase the size of the text using some custom CSS. Given the current HTML, the following CSS could be used make the text larger.
@media (min-width: 768px) {
.home .intro-content h1,
.home .intro-content h2 {
font-size: 4.5rem;
}
}
Let me know how that works for you.