[custom_headline type=“left” level=“h1” looks_like=“h2” class=“mainhead”]Custom Headline[/custom_headline]
Custom Subheading
Hello John,
I have logged in and investigated your issue. It turns out that in the Headline element, you inserted the classic custom headline shortcode which is not correct.
[custom_headline type="left" level="h1" looks_like="h2" class="mainhead"]Custom Headline[/custom_headline]
And then in the sub heading area, you also inserted this:
<p class="subhead">Custom Subheading</p>
You are already using a headline element. You are suppose to insert plain text. No html codes if possible to avoid any issues. If you prefer to use the shortcode and the subheadline html code, then it is better that you use a content area element instead.
And lastly, somewhere in the header, you added a broken custom css:
@media (max-width: 480px) { margin-top: -1em !important; }
The correct one should only be:
@media (max-width: 480px) {
$el {
margin-top: -1em !important;
}
}
And there is also a broken commented css code which is still in the header:
/* @media (max-width: 979px){
.tni_main {
font-size: 2.7em !important;
}
}
The correct one should be:
/* @media (max-width: 979px){
.tni_main {
font-size: 2.7em !important;
}
}*/
You will have to correct all those codes so that the page and the styling will be applied to the page elements correctly.
Hope this explains your issue briefly.