I would love to change the name of the none category
Pinging
I'd also find this useful ^-^
I'm in full support
like the none category takes away from the aesthetic that someone is trying to make with their Gallery/Shop
This would be okay.
What I would prefer, though, is the option to display or not display a category.
For example, my toy gallery is full of items that are "playable" on site. But there's a bunch of stuff that should be toys that aren't. I want those items in my gallery so I don't accidentally sell them, in the event that the site changes them properly into toys, but I don't want to display them in my playable gallery.
In loving memory of Need posting achievements?Then join Posting Frenzy Achievement Items - searchable list List of Borders and cutouts New at Fresh and Flavorful Ping Group
I was going to suggest that this could maybe be fixed with CSS, but then I discovered that the text/description box does nothing? Not even display text? So there's that.
It does display text though, when viewing the shop/gallery it's displayed above the search bar, but don't forget for any changes in edit gallery/shop page to take effect the edit button needs to be pressed though.
Guess it just doesn't like me then?
I've had the text "Does this affect anything?" in my Text/Description box since I made that post, maybe a little before, and I do not see it in my gallery: https://subeta.net/user_shops.php/shop/43692
strange something must be affecting it on your browser possibly you have some in your CustomCSS affecting it
I see it though
Well, I'm frankly baffled as to how you see it. I just tried Chrome, Edge, and Firefox, both with and without my Custom CSS, and it doesn't appear at all.
I also looked at your galleries and I see no text or custom modification, so if you have any, it isn't showing up.
[Edit] Just found a preference check box for "Show layouts in user shops and galleries" that I didn't know existed.
Ah I didn't leave any description sorry but I just added a bit on each here are two links: Gallery https://subeta.net/user_shops.php/shop/20806 should show "Look at those feathers" Shop https://subeta.net/user_shops.php/shop/9224 should show "Items for sale get it while it's hot!"
I have figured out how to do this in CSS. However, you should note that it will only make a difference to people who have the "Show layouts in user shops and galleries" box checked in their preferences. So it would still be nice if this could be done more "officially".
If you don't want to display a category, you can use this code:
<style>
li.nav-item:nth-child(1) {display: none;}
</style>
Just replace 1 with the number, in order, of the category that you don't want to show up. The first category is "none", so if you left it as-is, then the "none" category would disappear.
If you want to change the name of your "none" category, you can use this code:
<style>
li.nav-item:nth-child(1) a {font-size: 0px;}
li.nav-item:nth-child(1) a:after {content: "Bananas"; font-size: 14px;}
</style>
Obviously, replace "Bananas" with whatever word you actually want to go there. :)
Nice, but i suggest changing "li" to ".nav-item" though otherwise the main navigation will be affected as well for first element that's the cash shop tab
Omg you are a superstar! Thank you thank you thank you ❤️
Thank you!!!!!
In loving memory of Need posting achievements?Then join Posting Frenzy Achievement Items - searchable list List of Borders and cutouts New at Fresh and Flavorful Ping Group