XF 2.3 block header text align

williamt

Member
Can't seem to figure out how to center the text in block header 2.3.0 tried this and dosen't seem to work.
.block-header{
text-align:center;
}text alingn.webp
 
Try changing to this:

Code:
.p-header-content {
    justify-content: center;
}

Remove all the other flex statements for this and just leave it with what's showing above.
 
Where do you put this code?
It works fine in extra.less template

Less:
.block-header {
    text-align: center;
}

1721655811510.webp
 
Can't say more, this code works as you can see in my previous post.
If you have multiple style, be sure to add the code in the relevant extra.less template.
 
Back
Top Bottom