XF 1.3 How could I get forums to look like...

Krave

New member
Hi,

I'm trying to make my forums look like the following on this image: <Removed>

If anyone could help me out, that'd be much appreciated.
 
Last edited by a moderator:
its done using CSS. If you look at their CSS its doing the following for each node:

Code:
/*********************
NODE BACKGROUNDS/ICONS
**********************/
.node.forum.level_2.node_107 .nodeInfo {
background: #434135 url('styles/flatawesome/Backgrounds/counterstrike.jpg') no-repeat 100% 0;
}
.node.forum.level_2.node_107 .nodeStats dl dt, .node.forum.level_2.node_107 .nodeStats, .node.forum.level_2.node_107 .subForumsPopup .dt, .node.forum.level_2.node_107 .nodeText .nodeTitle {
color: #86804E;
}

That should give you more than an idea on how to achieve that look.
 
Top Bottom