@baris I use npm 3.3.12 without any issues.
Lavender Modification - Category Header
-
Hello All!
Just curious if anyone knows of an easy way to hide the header on the categories?Thanks!
-
double click on the icon in the admin panel, and select the first icon (blank). like this http://tilg.in/0302_44_74.png
Also how did you create http://forums.basecmd.com/game-servers ? i wanted something similar
-
@chas Thanks. But I'm looking to remove the header completely, not just the icon. I made the page by using the Custom Static Pages Plugin and added the rest myself. If you want the code, just let me know.
-
.category-item .category-header { display: none; }
Add that into your custom CSS. You might need to adjust other portions of the code to make it look right, but that should start you off.
-
@a_5mith Will that work with just certain categories? For example I only want to remove a couple of them, not all.
-
@Justin You could probably use CSS3 selectors to only grab the ones you want to remove. The code above removes them all. I've have a play with some selectors, and find one that works, it may be the case that you could just look at the category ID and hide it that way.
Edit: I'm not sure where this would be added, but you could use the ID of the category, so
#category-2
at the end of the code should only get rid of that one. I only have IE on this PC, so I'm unable to test properly (Firebug ftw), but that should be what you need to get started. -
@a_5mith said:
.category-item .category-header {
display: none;
}.category-item[data-cid="1"] .category-header { display: none; }
-
@baris Yeah that.
-
Awesome! Thanks guys!