Question:

::before
. I tried this advice here and used a little ingenuity to added a CSS like so:div.post-body-container::before{
content: none;
}
And some other variations of the same. Where am I going wrong here? This is my blog btw if it is needed on which I’m using Soho Neon theme.
Answer:
Try usingcontent: ''
instead.div.post-body-container::before {
content: '';
}
If you have better answer, please add a comment about this, thank you!
Leave a Review