postbullets image in easy image gallery plugin


Author Message
Tautvydas

Posted: 6/9/2014
Quote message 

Hi, I have a problem and can't find the solution. I have WP theme created with artisteer, and I am using easy image gallery plugin. When I create the gallery there are postbullets automatically added to each photo (http://webpaslauga.lt/agrolabas/ ) I found out that it is because <li> tag. Do you know how to hide those black circles? I can't just delete the postbullets image, becauso, I need it to some texts, but I don't need them in image gallery.
Thank you in advance
 
Elvira
Artisteer Team

Posted: 6/10/2014
Quote message 

It should be pretty easy to remove them, however I don't see any bullets in your gallery:

 
selma123

Posted: 10/8/2014
Quote message 

I have the same issue since ever!

Though I know that it can be removed in the code around line 1910 by deleting the line "content: url...." but then the bullet point will be removed in a text also, where it is needed. Can anyone help to get rid of this issue in the software itself finally? or is there a work-around in the code somewhere?

.art-block ul>li:before
{
content: url('../images/blockbullets.png');
margin-right: 6px;
bottom: 2px;
position: relative;
display: inline-block;
vertical-align: middle;
font-size: 0;
line-height: 0;
margin-left: -10px;
}
 
Tanya
Artisteer Team

Posted: 10/8/2014
Quote message 

Hi,

You can add the following code in the .css file to get rid of the bullets in the concrete component:

.component_class li:before
{
content:none!important;
}

Best regards,
Tanya