I am attempting to reduce the space between the words: "frihedskamp og fremtidsforelskelse"
When I remove the CSS tag in line 149, the spacing returns to normal. To address this, I tried adding the following override on line 266:
HTML
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="block-thumbnail">
<a href="#" class="block-thumb">
<div class="block-image">
<div class="overlay"></div>
<img src="/images/courses/au/designteori-og-historie/forelaesninger-slides/frihedskamp-og-fremtidsforelskelse.jpg" alt="Designteori">
</div>
</a>
<div class="block-data">
<h3>
<a href="#">Frihedskamp Og Fremtidsforelskelse</a>
</h3>
</div>
</article>
</div>
CSS
.block-thumbnail .block-data h3 a {
font-size: 18px;
font-weight: 900;
color: #fff;
line-height: 1.0
}
I initially thought adjusting the line-height would solve it, but that approach didn't work. Does anyone have suggestions on how I can achieve a "normal" line-height?