The logo of this page is shown out of its place in windows:
But the markup is very simple. What of this is incompatible with Windows?
Here is a Windows7 + Chrome49 test screencapture (is the same in newer Windows OS):
HTML:
<div class="site-branding hidden-xs">
<div class="s s-weblog"></div>
<a class="site-title" href="<?= esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a>
<p class="site-description">
<?php bloginfo('description'); ?>
</p>
</div>
SCSS:
.site-branding {
text-align: center;
.s-weblog {
font-size: 128px;
height: 135px;
}
.site-title {
font-size: 28px;
padding: 0;
}
.site-description {
margin-bottom: 30px;
font-style: italic;
}
}
Thak you in advance!