natejones / wpds

A WordPress digital signage solution that uses Zurb’s Foundation.
http://pixelydo.com/work/wordpress-digital-signage/
GNU General Public License v3.0
105 stars 74 forks source link

Edit @element.style #41

Open aPeukert opened 9 years ago

aPeukert commented 9 years ago

Hello There,

where can I edit the @element.style in CSS?

I can't find them in the stylesheet files.

Regards aPeukert

islanddog commented 8 years ago

element.style means that the CSS is inline -- coded in the HTML of that element. So you'll need to either find the relevant inline CSS or use external CSS that will override the internal (i.e. using !important or more specific selectors).

I utilized Visual Composer and embedded my own CSS into each post:

div[style] { background: transparent !important; }

I wanted to make the background for the plugin not visible so I could utilize another plugin to scroll backgrounds. This was successful for me. Best of luck.