XF 1.3 not to show sub forums?

C.Stanley

Active member
I thought there was a option to allow you to show sub forums or show a number of how many subforums are there on the forumhome page? Am i over looking this?
 
i want it to show that popup menu (that is all i want it to show) however i do not want it to show the subforum names on forum home (see post #4)

I want it to look like xenforo.com forum home @Jake Bunce
 
Last edited:
If you are using a custom style (that has a framework) you need to also check in it to see if there are options that can be set for the forum display.
 
This is all i could find in reference to subforums in extra.css

Code:
ol.subForums {
  margin: 0px 10px 10px 53px;
}
.subForums li {
  display: inline-block;
  width: 35%;
  background: url("@imagePath/xenforo/XenCrea/arrow1.jpg") left top 2px transparent no-repeat;
  padding: 0 0 0 19px;
  height: 15px;
}
.subForums li:hover {
  background: url("@imagePath/xenforo/XenCrea/arrow2.jpg") left top 2px transparent no-repeat;
}
.subForums li .nodeTitle {
  position: relative;
  bottom: 0px;
}
.subForums .nodeTitle a {
  color: #606060;
  transition: 0.2s;
  font-size: 12px;
}
.subForums .nodeTitle a[href]:hover {
  color: black;
  text-decoration: none;
  transition: 0.2s;
}


.subForums li {
  display: inline-block;
  width: 35%;

can anyone make anything out of than in reference to my question?
 
Top Bottom