I’m trying to create two versions of H2 to appear on a Category parent page named Documentation. Should I add the following to styles.css?
.version-one h2 {
color: black;
}
.version-two h2 {
color: blue;
}
Then should i edit the HTML source code of the Documentation page? I see the following code:
<div class="col-md-9 col-sm-10 col-xs-12">
<h2 class="knowledgebase-title"><a data-placement="bottom" data-popt="kb-homepage-popover-5" title="Documentation / GX3 Release Notes" href="#" class="btn btn-default btn-sm text-muted ipt-kb-popover"><i class="glyphicon ipt-icon-paragraph-justify2"></i></a> GX3 Release Notes</h2>
<div class="ipt-kb-popover-target" id="kb-homepage-popover-5">
<p class="text-right">
<a href="https://knowledgebase.worldox.com/category/documentation/rnotes/" class="btn btn-info">
<i class="glyphicon ipt-icon-link"></i> Browse all
</a>
</p>
</div>
Where should I insert some sort of code, such as?
<div class="version-two">
<h2>GX3 Release Notes</h2>
</div>
Should I use
<div class="version-two">
<h2 class="knowledgebase-title"><a data-placement="bottom" data-popt="kb-homepage-popover-5" title="Documentation / GX3 Release Notes" href="#" class="btn btn-default btn-sm text-muted ipt-kb-popover"><i class="glyphicon ipt-icon-paragraph-justify2"></i></a> GX3 Release Notes</h2>
<div class="ipt-kb-popover-target" id="kb-homepage-popover-5">
<p class="text-right">
<a href="https://knowledgebase.worldox.com/category/documentation/rnotes/" class="btn btn-info">
<i class="glyphicon ipt-icon-link"></i> Browse all
</a>
</p>
</div>