XF 1.5 How to add background on a subforum?

Rotary

Member
Hi,

how to add a background image on a subforum?

See picture: Instead the white I want make a background image.
 

Attachments

  • screen569.webp
    screen569.webp
    4.2 KB · Views: 15
Try this in extra.css
Code:
.nodeList  .node_15 .categoryForumNodeInfo, .nodeList .node_15 .forumNodeInfo, .nodeList .node_15 .pageNodeInfo,
.nodeList .node_15 .linkNodeInfo {
    background-color: transparent;
}
.nodeList .node_15{
    background: url("/path/to/image") no-repeat;
    max-width: 100%;
}
 
Top Bottom