Loading...
 
Skip to main content

Features / Usability


Can button bar in "browse freetags" page be removed?

posts: 3 Bulgaria

Hello, there is a button bar in "browse freetags" that allows you to specify where you want to do the search - "All | Wiki Page | Blog Post | File Gallery.." etc

But since my site has only blog posts it is of no use for my readers. I looked in options and in documentation and I found no way to turn this feature off. Am I missing something or indeed this button bar cannot be removed?

Thank you!

posts: 3 Bulgaria

Thank you! I used a slightly modified CSS and it did the job

.freetagsearch .btn-toolbar {display:none;visibility: hidden;}

posts: 8654 France
Georgi Bonchev wrote:

Thank you! I used a slightly modified CSS and it did the job

.freetagsearch .btn-toolbar {display:none;visibility: hidden;}


Great, happy to help.

Note: Your CSS rule is valid, but when both display: none; and visibility: hidden; are applied together, only display: none; takes effect because it overrides visibility. The element will not be visible and will not occupy any space.

  • display: none;: Hides the element completely, removing it from the document flow. The element will not occupy any space on the page.
  • visibility: hidden;: Makes the element invisible but still reserves its space in the layout.


😉

posts: 3 Bulgaria
Bernard Sfez / Tiki Specialist wrote:
Your CSS rule is valid, but when both display: none; and visibility: hidden; are applied together, only display: none; takes effect because it overrides visibility. The element will not be visible and will not occupy any space.


Good to know, CSS is not my strongest 😊