Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I use
<hr style="color: #ffa700;" />
to separate rows.
The line is orange in the visual editor but grey on the actual homepage.
Why?
Hi Valentino
Rather just use in the Visual Editor:
And then under Appearance > Custom CSS insert something like this:
/* Typography */ hr { height: 1px; background-color: #E5E5E5; border: 0; margin-top: 50px; margin-bottom: 50px; }Thanks, Andrew, that works nicely – but what do I do if I want to use different colors on different pages?
The best way would be to use the body class. Check the page source, within the body tag there is a class unique to that page or post. Prefix hr with that class.
For example on this page here: http://demo.siteorigin.com/vantage/page-builder/ you’d say:
.page-id-14 hr { properties go here... }Make sense?