I'm currently working on a website header design where I am struggling to align the logo and site title horizontally. As someone who is new to CSS, any guidance or tips would be greatly appreciated!
The logo image has the following styling:
.logo {
float:left;
}
Meanwhile, the h1.site-title and h2.site-description text have this styling:
h1.site-title, h2.site-description {
position:relative;
margin-left: 130px; !important
}
I believe creating another DIV is necessary, but I am having difficulty with positioning so that the logo appears on the left, followed immediately by the site title/description.