I have two different CSS (one from a WordPress theme)
body .portfolio-content h2 {
font-size: 18px;
}
and one from a WordPress extension (TimelineJS)
.tl-timeline h2 {
font-size: 46px;
}
Which font-size
will be applied to an element <h2>
place into a <div class="tl-timeline">
, itself placed into a <div class="portfolio-content">
and why?
<div class="portfolio-content">
<div class="tl-timeline">
<h2>One h2 title</h2>
</div>
</div>
It seems that it is 18px, but I would like to set it to 46px with from the 2nd CSS. How can I do this without modifying the CSS (they come from WordPress theme and extension) ?
Thanks