Remove Bullets in Event Booking extension


Author Message
Paul

Posted: 11/11/2015
Quote message 

Hi there,

is there anyone with good CSS knowledge who can help me remove the bullets on the Event Booking page only? I tried hard, but am unable to find it yet.

the URL is: http://www.vrienden-archeon.nl/event-booking

Thanks so much !

 
James G

Posted: 11/11/2015
Quote message 

Something like this should work. Add to bottom of css.

.eb-calendar .postcontent ul>li:before, .post ul>li:before, .textblock ul>li:before
{
content:'';
}

Let me know if it doesn't.
 
Paul

Posted: 11/11/2015
Quote message 

Hi James,

thanks a lot!! I have been looking for that for a long time. I need to dive into CSS again this winter :)

Regards!


 
Paul

Posted: 11/12/2015
Quote message 

Hi there,
unfortunately it messed up the bullets on the rest of the website, I could use some more help, since i dont know what code to use to get it right.

Please check on the homepage if original bulletpoints stay, they DO have to disappear on this page though: http://www.vrienden-archeon.nl/event-booking

thanks a lot!
 
Paul

Posted: 11/12/2015
Quote message 

I managed to get most bullets out, still 1 in there:
http://www.vrienden-archeon.nl/event-booking/groengroep/15-bladeren-vegen

Left of the green button, still 1 annoying bullet left...
 
James G

Posted: 11/13/2015
Quote message 

Hey Paul,

.eb-taskbar ul>li:before {content:'';}
 
Paul

Posted: 11/14/2015
Quote message 

thanks James!