See webpage here: http://104.131.149.147
Am trying to add a little extra vertical space between H2 and the 2 icons so they are spaced the same distance as between H2 and H1.
Here is the code as is:
<header id="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="vertical">
<div id="site-head-content" class="inner">
{{#if @blog.logo}}<a id="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt=$
<h1 class="blog-title">{{@blog.title}}</h1>
<h2 class="blog-description">{{@blog.description}}</h2>
<a class="fa fa-comments fa-2x"></a>
<a class="fa fa-envelope fa-2x"></a>
</div>
</div>
I have tried adding the following code to H2:
padding-bottom: 10px;
but it does not work either because the syntax is wrong or I am not inserting it properly.
Any help would be greatly appreciated.