Circle Before Posts Won't Go Away
-
How do I just make a line before each post instead of having the current black circle and line? I just want to make the circle go away.
The blog I need help with is: (visible only to logged in users)
-
Hi.
Yes, you can definitively make it disappear (display:none) or hide (visibility:hidden): not exactly the same, but works equally in this case.
The black ball is a class=circle element inside a class=blog-divider element, so you can modify this by using Custom CSS:.blog-divider .circle {display:none;}By the way, if you make disappear the black hole :) you would probably like to move upwards the ‘leave a comment’ link. If so, take into account that right now there is a 36px margin between the line and the ‘leave a comment’+date+author text block, that could be modified. How? Using this code, adapting the gap to your needs (I use, as an example, 24px):
.blog-divider { margin-bottom: 24px; }Enjoy blogging!
- The topic ‘Circle Before Posts Won't Go Away’ is closed to new replies.