Site logo

Archived topic

Horizontal Rule spacing

1 reply · Started by Jamie on March 4, 2018

Viewing posts 1–2 of 2

Hi guys,

I am using a <hr> like this (in a section using 2 columns):

<h1>Title content</h1>
<h2>Subtitle</h2>

<hr>
**this spacing here non-existent**
<h2>more text...</h2>

The spacing between the bottom of the <hr> and the <h2> content is gone.
It worked at first but not anymore.

I tried making sure there was no formatting because I noticed that if I edited in visual mode, it added formatting. Still no luck.

Thanks kind sirs!

Jamie

Hi Jamie,

You have this CSS added to removed the margin:

hr {
    background-color: #1e9cd7;
    height: 3px;
    width: 25%;
    margin: 0px;
}
This archived topic is closed to new replies.