Hi guys! I’ve been sweating building my first ever tribute page. I need some help to fix some issue with the title, somehow the text shows on top of the main div that has to nest everything else. I’ve been stuck for ages, any help would be appreciate it. Thanks
1 Like
Hi,
Your h1
's font-size: 4rem;
, which is way bigger than the line-height: 1.6em;
inherited from the body
tag.
Try to set the line-height
for the h1
, it should be equal or bigger the font-size
.
For example, your h1
's font-size
is currently 4rem
, try to set line-height: 4rem;
for the h1
.
Also, you could set padding-top
for the h1
.
Hope that will help
1 Like
Thank you so much @toan. That worked really well. I’m right now at the process of digesting so many new terms and concepts and how to make them work, I guess stumbling for hours with those tiny mistakes helps to not do them again. Much appreciate your help! You are a life saver