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.
 
Back
Top Bottom