XF 2.2 Font and alignment problems

ZJK

New member
Good evening,

how do I left align my forum category title? Also my user interface font weight is very light, not pleasing to the eyes, how do I increase it? I noticed under Appearance -> Typography, you can tweak the font and weight, but I have no idea how to adjust it. I tried checking "Solid", but it only makes forum icons solid and isn't doing anything to the font. I want mine to look like Xenforo's style (see the screenshot at the bottom) I'm using xenforo cloud.

Thank you!

1682213707829.webp

1682214269107.webp


1682213764467.webp
 
Solution
Hi,
You can try css like

.block-header{
text-align:left;
}

In 2nd part basically two types of nodes read and unread. So unread is bold and read is normally. But you can increase the font weight using
.node-title{

font-weight:700;
}
Hi,
You can try css like

.block-header{
text-align:left;
}

In 2nd part basically two types of nodes read and unread. So unread is bold and read is normally. But you can increase the font weight using
.node-title{

font-weight:700;
}
 
Solution
Top Bottom