My code consists of the following:
<div class="site-logo">
<a href="https://www.fakedomain.net/index.php/" class="site-logo-link">
<span class="site-logo-icon">
<i style="background-image:url(https://www.fake.net/logos/image.png)"></i>
</span>
<span class="site-logo-name" style="display:none;">asdfasdf</span>
</a>
</div>
I'm attempting to resize the height background image of the i tag to 100px. I realize that I could insert an inline style to the i tag; however, I would rather change the height from within a .css file. I tried without success:
.site-logo-icon i {
height: 100px;
}