Archived topic
Adding Separator to Page Header
3 replies · Started by John on October 23, 2018
Hi
I'd like to add an H3 Title With Separator at the top of my blog page. Same as I've used on my About page.
I created it using Elements (Page Hero). And the title is showing on the Blog page. No problem. But I tried to add the separator by copying the HTML snippet below. But no luck. Can you help me with this? Sorry, I'm not good at this.
<h2>
OUR BLOG
</h2>
Thank you.
John
Hi there,
the BB markup will only work on the page it was built upon. You can simply add a Horizontal Rule tag to your markup like so:
<h2>Our Blog</h2>
<hr>
Then to match the style of the BB separator for the HR in the hero you can add this CSS:
.inside-page-hero hr {
background-color: #ccc;
margin: 20px !Important;
}
Fantastic. Thank you.
You're welcome