Two of my pages have lines in the bottom separators.
I have applied this fix to my global CSS:
.x-section-separator-bottom,
[class*=“x-separator”][class*=“bottom”] {
bottom: 1px;
}
.x-section-separator-top,
[class*=“x-separator”][class*=“top”] {
top: 1px;
}
However it is not fixing it.
The pages are: https://voxharmony.org.au/wp/repertoire/ and https://voxharmony.org.au/
Please let me know how I can remove them - they don’t show on any of my other pages.
Thanks,
Louise
UPDATE:
Fixed with the following css:
.x-section-separator-bottom,
.x-separator-bottom-curve-out,
.x-separator-bottom-curve-in,
[class*=“x-separator”][class*=“bottom”],
.x-separator-bottom-curve-out {
bottom: 1px!important;
}
.x-section-separator-top,
.x-separator-top-curve-out,
.x-separator-top-curve-in,
[class*=“x-separator”][class*=“top”] {
top: 1px!important;
}