Hi there,
I’m trying to change the color of the borders of my panels. How do I do this?
I tried doing the following:
.v-panel { border-color: #FFFFFF; }
That didn’t work and the following didn’t work either:
.v-panel-content > div { border-color: #FFFFFF; }
Thanks in advance.
Try with,
.v-panel-caption{ border-left-color: yourcolor; border-top-color: yourcolor; ...... ....... }
Check the Chameleon Theme CSS for reference: panel.css
Note, though, that the Chameleon Theme extends from the Base theme and not the Reindeer, so you might have to override some other properties to get the results you want.