Artisteer css getting in the way of plugin css?


Author Message
necron99

Posted: 11/18/2014
Quote message 

So I've noticed that all of my plugins that have a visible presence on my wordpress sites (bbPress, File Manager, WP Events Plus, etc) seem to look squirrely when I activate my artisteer theme. It looks like artisteer is enforcing things like the <li> tag image and probably other stuff that causes spacing issues, etc. When I switch to the stock themes that come with WP the plugins I listed above all look perfectly fine. Any suggestions?
 
Tanya
Artisteer Team

Posted: 11/19/2014
Quote message 

Hi,

Please provide a link to the site and point to the exact areas that do have issues.

Best regards,
Tanya
 
Necron99

Posted: 11/20/2014
Quote message 

No problem.

http://icehousewarriors.com/test-file-manager/

If you go there you'll see the dashed box bullets showing up everywhere. I also don't believe the gray box around the filter text box is supposed to be there either. I also use Events Plus event and calendar plugin and have even worse problems - but let's see what we can do with this one first.
 
necron99

Posted: 11/20/2014
Quote message 

Here's another link. It's the bbPress plugin. Same issue more or less. The bullets are showing up everywhere.

http://icehousewarriors.com/?post_type=forum
 
jrgweb

Posted: 11/20/2014
Quote message 

@necron99

Insert this code at the bottom of your css file.

#bbpress-forums li:before {content: ''!important;}
.b5-file-manager-folder li:before { content: ' '!important; }

This code turns the bullets off for the forum and file manager but should be active for artisteer.
 
jrgweb

Posted: 11/20/2014
Quote message 

@necron99

if you want to remove border around the filter bar, add this:

.b5-menu-bar input {border:0!important;}

 
Necron99

Posted: 12/1/2014
Quote message 

Awesome - that works wonders for bbPress! Thanx!