Styling [hr] Tag

Is is possible to style the [hr] tag in rich text formatted blocks of text? If yes, what is the correct syntax?

Hey @kenlaji

Yeah the bbcode is very limited in any design freedom. Best to utilize the power of CSS .

You can add a custom style to the page e.g.

hr {
    height: 5px;
    background: #8cf;
}

OR if you want to target a specific CSS ID, export the ID in app settings and add to the text or HTML element. Then add the following code into the page header or insert to tag:

div#my-custom-id hr {
    height: 5px;
    background: #8cf;
}
3 Likes

Thanks a lot Luke for the quick and helpful reply :slight_smile:

1 Like

Your welcome, glad to help out