XF 2.2 Node title size change?

In a default style I don't think you can via the ACP... you will need to address it via your extra.less.
If you are using a custom style, it may allow it, and it would (using PixelExit's Bolt as an example) be under ACP -> Appearance -> Styles -> Chosen Style Style Properties -> Node/Forum list -> Node Title

Screen Shot 2023-04-07 at 6.22.49 PM.png
 
Less:
.node-title {
    font-size: 20px;
}
Actually, I'd personally use
Less:
.node-title a {
font-size:20px;
}
as it addresses the actual hyperlink itself. You can then extend that using
Less:
.node-title a:hover {
color:green;
font-size:25px;
}
to give special effects when the link is hovered over, or using a:active when the hyperlink is the active one or a:visited to highlight already visited links (if one wanted to go to that extreme).
 
Last edited:
Top Bottom