XF 1.4 Forum_List, How can I add border in each Category?

rdn

Well-known member
How can I remove this border:
hbmMiCP.png


And add border in each Category:
FqTngdY.png
 
With this code:
Code:
/* Category Border */
.nodeList .node.level_1 {
  border: 1px solid @primaryLighter;
  border-top: none !important;
}
#forums {
  padding: 0px !important;
  border: none !important;
}

I got this now:
upload_2015-7-7_4-6-54.webp

There is a gap on Category title block :/
 
Remove the sectionMain class from the <ol> that also has a "nodeList" class and an ID of "forums".

Then, you want to add the following CSS:

Code:
.nodeList .node.level_1
{
    border: 2px solid red;
    padding: 10px;
    border-radius: 5px;
}
 
This CSS fulfills my desire :)
Code:
.nodeList .node.level_1 {
  border: 1px solid @primaryLighter;
  border-top: none !important;
}
#content.forum_list #forums {
  padding: 0px !important;
  border: none !important;
}
.grid_column, .grid_full {
  padding: 0px !important;
}
#content.forum_list .node .nodeLastPost {
  margin-right: 8px !important;
}
 
Top Bottom