Horizontal Rules are lines that extend across the allowed width on the Page, and are added via the Formatting Toolbar.
The appearance of Horizontal Rules is defined in the CSS Editor.
Search for
hr
. The definition for the Horizontal Rule will look something like this:hr {
background: rgba(127, 127, 127, 0.2);
border: 0;
height: 1px;
display: block;
}
Next to the background
property, click the square to choose a color and adjust the height
property to make horizontal rules thicker or thinner.Still need help?