XF 2.2 How to increase font size in block quotes?

drastic

Well-known member
Hey,

What can I place in extra.less file to increase font size in the block quotes, and put it in italics?

Thanks!
 
I tried this

Code:
.blockquote {
    font-size: 24px;
    font-style: italic;
}

but no luck.

I should mention this is for the AMS addon in particular, but I thought AMS and the threads used the same elements.... or I could be wrong.
 
Just from memory
Looks like that was wrong (I was thinking of wordpress, blockquote being a standard element)

However:

Code:
.bbCodeBlock--unfurl .contentRow-header {
    font-size: 26px;
    font-style: italic;
}


.bbCodeBlock--unfurl .contentRow-snippet {
    font-size: 36px;
    font-style: italic;
}

That seems to work for me, but you'd to check it isn't affecting other things.
 
Back
Top Bottom