Is there a way to remove the "random" button on the Panel Theme?
-
That’s what I need. I can’t seem to find an option in the theme options and I don’t know how I would go about making that in CSS. Any help would be appreciated!
I make a story-based webcomic and the “random” button is useless and distracting for my comic.
The blog I need help with is: (visible only to logged in users)
-
This should do it:
.entry-comic .navigation-comic .nav-random { display: none; }Or if you want to preserve the space taken up by the button, use this instead:
This should do it:
.entry-comic .navigation-comic .nav-random { visibility: hidden; }I noticed that your copyright CSS isn’t quite targeting the right element, so it’s not working. You can try this instead:
.site-info::before { content: "Copyright ©2016 Tom Schlais | "; display: inline; } -
-
You’re very welcome!
If you need further help with CSS feel free to post in the CSS Customization forum:
- The topic ‘Is there a way to remove the "random" button on the Panel Theme?’ is closed to new replies.