Is there a way to increase the height of the iframe in the header without displaying the scrollbar? I've been trying, but it's not working. Can someone help?
Take a look at the header here.
This is how it's set up in index.html:
<header>
<iframe src="header.html" frameborder="0" width="100%" height="270"></iframe>
</header>
This is what's inside header.html:
<header>
<div style="display: flex; justify-content: center;">
<a href="index.html" target="_parent"><img src="images/$RK6ZV6D.JPG" alt="logo" width="60%"></a></div>
Here's the relevant part from main.css:
iframe {
overflow: auto;
height: auto;
}
header {
background-color: #fff;
}