I am having an issue on my website where the text is not aligning with the image as desired. The parent container is aligned to the top of the page, but the text seems to be out of line. I would like the text to be in line with the image, similar to a navigation bar. Can you provide assistance with this?
body {
padding: 0px;
}
#icon-top-corner-wrapper {
width: 35px;
height: 35px;
background-color: lightBlue;
padding: 5px;
float: left;
}
#icon-top-corner {
width: 100%;
}
#toolbar {
margin: 0px;
padding: 5px;
}
<div id="toolbar">
<div id="icon-top-corner-wrapper">
<img alt="Digytool Icon" id="icon-top-corner" src="https://system.digytool.com/img/icon/digytool.png" title="Digytool">
</div>
<div>
<h1>
Digytool
</h1>
</div>
</div>