dehness
Well-known member
For example, right now I'm trying to remove the top and bottom breadcrumbs, but only from forum_list. In XF you could write something like this in extra.css:
I know the breadcrumb selectors have changed, so I tried (to no avail):
So far I haven't been able to find any sort of index or reference point I can go to in order to find out how these things are different in XF2. I was hoping someone could just give me a basic idea of what you do to find the proper syntax in the new system. I'm sure there must be some sort of reference point, be it documentation somewhere, or some values I'm missing in inspect element or something?
CSS:
.forum_list .breadBoxTop,
.forum_list .breadBoxBottom
{
display: none;
}
I know the breadcrumb selectors have changed, so I tried (to no avail):
CSS:
.forum_list .p-breadcrumbs
{
display: none;
}
So far I haven't been able to find any sort of index or reference point I can go to in order to find out how these things are different in XF2. I was hoping someone could just give me a basic idea of what you do to find the proper syntax in the new system. I'm sure there must be some sort of reference point, be it documentation somewhere, or some values I'm missing in inspect element or something?