By bszk on
Hi,
I am using a custom theme here that was provided.
The pages are panel pages using the flexible layout
I am trying to change the style of the title in all of the panel panes.
So I added this to style.css
h2.pane-title {
color:red;
font-size:12px;
}
And using that I am able to manipulate the font size but for some reason the color of the text does not change no matter what I put there.
I would be grateful if anyone can help me solve this. How can I find out what I need to change?
There is something overriding the color and it also switches everything to uppercase.
Comments
never mind
I found the place to make the change.
It was in drupal.css
...
#content div.panel-pane h2{
color:blue;
...