Bullets appearing as check marks rather than standard bullet

March 2014 WordPress Theme
GK User
Wed Mar 11, 2015 2:09 pm
Hi there, on my site there seems to be bullets appearing as little red check signs as you can see on this page here: http://www.jamjosandbox.com/mag/events and also on a standard post page like so: http://www.jamjosandbox.com/mag/how-to-make-oobleck/

Basically I would prefer the standard bullet marks to appearing on post and pages like so: http://www.jamjosandbox.com/mag/how-to-make-oobleck/

And secondly a way to make sure I can hide the bullets on specific pages maybe by way of using some custom css to target the page in question maybe?

Thanks in advance. James
User avatar
Expert Boarder

GK User
Wed Mar 11, 2015 2:53 pm
Hi,

Try to add this code into css/override.css file:
Code: Select all
#tribe-events-content-wrapper ul li:before {
    display: none;
}


the first wrapper you can change into .postid-77587 or .pageid-XX to use specific post/pages.
User avatar
Moderator

GK User
Wed Mar 11, 2015 3:47 pm
thanks Piotr, this hides the bullets from a specific page great. The issue is on the single post pages http://www.jamjosandbox.com/mag/how-to-make-oobleck/ right now the bullets are a red check mark, how do i get just a standard black bullet in place for example? Thanks
User avatar
Expert Boarder

GK User
Wed Mar 11, 2015 10:10 pm
Try to add also this code:
Code: Select all
article .content ul li:before {
   content: "\f111";
   color: #333!important;
   font-size: 10px;
   top: 1px;
}
User avatar
Moderator


cron