@rnmartinez Ah, I see! Thanks for clarifying what you’re trying to do, I didn’t realize you were trying to match a specific block style!
You can give this a try and let me know if it accomplishes what you’re after:
/* Post separator - undo theme styles */
hr.styled-separator::before,
hr.styled-separator::after,
hr.styled-separator {
background: transparent;
content: "";
display: block;
position: inherit;
top: inherit;
transform: none;
}
/* Post separator - add new styles */
hr.styled-separator {
background: none !important;
border: none;
text-align: center;
line-height: 1;
height: auto;
}
hr.styled-separator::before {
content: "···";
color: currentColor;
font-family: serif;
font-size: 3.2rem;
font-weight: 700;
height: auto;
letter-spacing: 1em;
padding-left: 1em;
position: static;
transform: none;
width: auto;
}
It should look like this:
Let me know how it goes!
-
This reply was modified 2 years, 2 months ago by Kathryn Presner. Reason: added screenshot