I have tried the following code in the main confluence stylesheet to override the default style of the horizontal rule (the line added in html by <hr> or four dashes in wikimarkup ----)
{style}
#hr {color: red; background-color: red; height: 5px;}
{style}
What am I doing wrong, is it even possible to change the style of the horizontal line using css?
Thanks!
Sandro
You have to use hr instead of #hr... like this:
hr {color: red; background-color: red; height: 5px;}
Thanks for the quick reply!
When I entered the code, a thin dark border remained around the horizontal rule, so I entered:
hr {border: none; height: 1px; color: #DADADA; background: #DADADA;}
to make a thin fully light grey line, problem solved!
Thanks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.