philbuchanan / Accordion-Shortcodes

A WordPress plugin that adds a few shortcodes to allow for accordion dropdowns.
https://wordpress.org/plugins/accordion-shortcodes/
16 stars 10 forks source link

Accordion Shortcodes - unable to set color of text - wp4.0 #21

Closed kevonl closed 9 years ago

kevonl commented 9 years ago

I am unable to put color to the according title text. I have tried using html tags in the page, css on the edit css section, and nothing is taking. Any idea what's going on? haiku.house/about/ i know i have the class right because the cursor and text-align work, but this color part has me stumped :p.

.about { text-align: center; color: #4373e4; cursor: pointer; }

philbuchanan commented 9 years ago

The reason it's not working is that you have a colour set on your h3 tag of #333333. You should add the colour to the classname .accordion-title {color: #4373e4;}

kevonl commented 9 years ago

Amazing! thank you.