drastic Well-known member Feb 21, 2021 #1 Hey, What can I place in extra.less file to increase font size in the block quotes, and put it in italics? Thanks!
Hey, What can I place in extra.less file to increase font size in the block quotes, and put it in italics? Thanks!
Mr Lucky Well-known member Feb 21, 2021 #2 Just from memory Code: blockquote {font-size:24px; font-style:italic} Upvote 0 Downvote
drastic Well-known member Feb 23, 2021 #3 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. Upvote 0 Downvote
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.
Mr Lucky Well-known member Feb 23, 2021 #6 Mr Lucky said: Just from memory Click to expand... 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. Upvote 0 Downvote
Mr Lucky said: Just from memory Click to expand... 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.