Hiding and showing items.
Custom Class
First create a custom class for the item you want to hide:
- Edit.
- Style and scroll all the way to the bottom
- In "Custom Class", add a name to it, eg.
myClass.
CSS
Then code it:
- Go to your settings tab and scroll down to the "Custom CSS"
- Use this syntax to hide:
.myClass {
display: none;
}