OK – partial fix using an earlier response from Anders:
Go to line 251 in style.css and change the following:
.blog-info {
display: inline-block;
padding: 30px;
background: #1d1d1d;
}
to the following:
.blog-info {
float: right;
padding: 30px;
background: #1d1d1d;
}
Next, go to header.php and find line 54. Directly after <?php endif; ?>, add: <div class=”clear”></div>. Save.
HOWEVER – I’d like to get the logo further to the right and slightly higher up in the header ….
Any ideas … ??? I was pissing around with margins, but it doesn’t seem to help