Hello, How would I add a company name and subtext right-aligned to the logo image?
I must be missing something.
The code below shows subtext with chrome and not Safari, but if I add a second line with a class of standard-logo, then it appears once on safari and twice on chrome.
<div id="logo">
<a href="/" class="standard-logo text-lg font-normal" data-dark-logo="storage/images/company-logo.png">
<img src="storage/images/company-logo.png" alt="Company Name" /> Company Name
<a href="/" class="retina-logo text-lg font-normal" data-dark-logo="storage/images/company-logo.png">
<img src="storage/images/company-logo.png" alt="Company Name" /> Company Name
<h2>SubText Here</h2></a>
</div><!-- #logo end -->CSS
#logo img {
display: inline-block;
margin-right: 5px;
}