XF 2.1 Unfurled URL Styling

bluemartian

Member
Are there any styles that control unfurled URLs?

While they look nice, I'd love to be able to tweak the look of them, mainly for font size and such. I'm a fan of how Slack does unfurls:

slack_unfurl_examle.webp

Thanks!
 
Yes. Put the following code in your extra.less template to change the font size of the unfurled title:

Code:
.bbCodeBlock--unfurl .contentRow-header {font-size: 50px;}

And this code to change the font size of the content snippet:

Code:
.bbCodeBlock--unfurl .contentRow-snippet {font-size: 40px;}
 
Back
Top Bottom