XF 2.3 Change Color/Font Size in Forum Title

Epi-hunter

New member
I apologize in advance. I have searched everywhere for a solution to this but haven't been able to find one.

I want to change the text color/size of the forum Title (below logo heading, and above the beginning of the node list) where it said Xenforo before I changed it to my specific forum title in Basic Option (setup section). I did find the CSS code to use to change it to the color I want, but I can't find where to put the code.

Using the default template.

Thank you very much!
 
Any CSS changes / modifications should go in the extra.less template. They will override the default ones.

Example:
CSS:
/* Add Gradient to Node and Thread Body Not Sticky */
.node-body {
    background: linear-gradient(to bottom, #f8f7f1 45%, #ddd3ad 90%) no-repeat;
}

/* Change Node & Thread Links to Burgandy */
.node-title a {
        color: rgb(135,8,7);
        text-decoration: none;
        //hover: orange;
    }
.structItem-title a {
        color: rgb(135,8,7);
        text-decoration: none;
    }
 
Last edited:
Back
Top Bottom