Hi – I’d like to redefine heading 6 to:
1. Have the same text size as heading 2
2. Not force all caps
3. Have a semi-transparent white background
How can I most effectively do this? Also, when using special heading boxes (ex. http://thebailorgroup.com/?page_id=2313) how can I add whitespace before the heading text? I tried &nsbp; but that is auto deleted on save. Also, spaces are ignored.
Thanks!
Hi stunna42,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
h6 {
font-size: 28px;
text-transform: none;
background: rgba(255, 255, 255, 0.7);
}
For the special heading, you could force a margin before it with:
.av-special-heading{
margin-top: 20px !important;
}
But there isn’t a setting within the shortcode itself.
Regards,
Devin
Awesome. Thanks Devin