I am trying to streamline all the blocks on a site so that the block titles are the same height etc.

It seems that whatever I do the Quote Block scales the block title and therefore is always smaller than what I can change with the css.

I can't seem to find this anomaly with Firebug.

Is there a way around this please?

Comments

ctmattice1’s picture

which css file are you modifying? Might look at #612418: Custom Title and RSS icon position to see if this is related

Anonymous’s picture

Thanks for your reply.

I took the relevant quote.css and put it in the modified theme css but that was just to have the h2 title left align instead of center.

.block-quotes h2 {text-align: center;}

The h2 title is set elsewhere for 1.06em and the block titles are all around 20px high.

There doesn't appear to be anything in the quotes.css to override or alter regarding the blockquote h2 title.

For the blockquote title though the block title area is only 17px high and the h2 title also squished. I have played around with padding to see if decreasing this allowed the blockquote title to 'expand'. I have increased the height of the block title area to 20px but the font size doesn't adjust proportionally.

Anonymous’s picture

Status: Active » Closed (fixed)

Found this:
.block-quotes{font-size:89%;}
was affecting the whole block - title and body.

changed it to this:
.block-quotes{font-size:100%;}

Looks correct now.