Use this CSS
.tinynav {
display: none;
}
or
.tinynav {
visibility: hidden;
}
The difference is that the former will make the select
not rendered at all and the latter will make the select
rendered (it will take the space of the document) but it will be completely invisible;
Here's a fiddle to show the difference: http://jsfiddle.net/rdGgn/2/
You should notice an empty space before the text in third line. It is the select that is rendered but not visible. There is no space before the second line of text, because the select is'nt rendered at all (it has display:none
).
There is also a third option which is
.tinynav {
opacity: 0;
}
It behaves almost the same as visibility: hidden
but the only difference is that with opacity: 0
you can still click the select. With visibility: hidden
it is disabled.