2017-06-30

Entry tags:

How To Edit HR

Just copy and paste the code into the Story Stylesheets, then adjust it to your liking.

For example:

hr
{
border-color: #000000;
border-style: dashed/dotted/double/groove/hidden/inset/none/outset/solid/ridge;
border-width: thin/medium/thick;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-style: none;
display: block;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px; 
opacity: 0.1/0.2/0.3/0.4/0.5/0.6/0.7/0.8/0.9/1.0;
}

hr:hover {
border-color: #000000;
border-style: dashed/dotted/double/groove/hidden/inset/none/outset/solid/ridge;
border-width: thin/medium/thick;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-style: none; 
display: block;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px; 
opacity: 0.1/0.2/0.3/0.4/0.5/0.6/0.7/0.8/0.9/1.0;
}

Or

hr {
border: 1px solid #000000;
margin: 0px;
opacity: 0.1/0.2/0.3/0.4/0.5/0.6/0.7/0.8/0.9/1.0;
}

hr:hover {
border: 1px solid #000000;
margin: 0px;
opacity: 0.1/0.2/0.3/0.4/0.5/0.6/0.7/0.8/0.9/1.0;
}