Can button bar in "browse freetags" page be removed?
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.
?