I would like to add a horizontal line that goes 3/4 across the page (in the middle) to divide one section from the other but I’m not sure how to do it.
Hi,
You can try adding a div. I am assuming you know how to code?
With CSS code below
.horizontal-line {
width: 75%;
height: 1rem;
position: relative;
display: block;
margin: 0 auto;
}
I do not know how to code, though I’ve added this type of code in before. I’m just not sure where.