XF 2.2 UNFURL not centered

Nicolas FR

Well-known member
Hello,

I can't center an URL UNFURLED... the text is only centered inside the box but not the box. is this normal ?

Thanks ! :)
 
This isn't necessarily unexpected. Alignment generally only changes inline elements. (Alignment sets the text-align CSS.) It doesn't apply to block level elements, like an unfurl. The same thing would actually happen with quotes as well, though it's not really noticable out of the box because there's no width limit.
 
You can aslo edit your CSS if you want. In the bb_code.less template (default code) :
CSS:
.bbCodeBlock--unfurl
{
    .xf-contentHighlightBase();

    padding: @_bbCodeBlock-paddingV;
    width: 650px;
    max-width: 100%;
    border-left: @xf-borderSizeMinorFeature solid @xf-borderColorFeature;

    overflow: hidden;

Just edit width, or via EXTRA.less :
Code:
.bbCodeBlock--unfurl {
    width: 100%;
}

Regards, SyTry
 
Top Bottom