I'm having a difficult time trying to determine whether something is controlled by CSS or HTML. I've been using Firebug and I'm 95% sure that what I'm looking at is an inline HTML style.
...has a button at the end (magnifying glass) that shows/ hides a search bar. I personally dislike that and I want it to always show. By default, it's hidden unless that magnifying glass button is clicked on.
I tried changing "display:none" to "display: inline-block" for the #search ID but something is controlling that to where it's still hidden by default.
Am I overlooking something simple here, or does this go beyond CSS or HTML?
Or, if you want keep the functionality of making the form show and hide but just want to make it show by default, just comment out this first line (it's what causing it to be invisible on page load):
My navigation bar, located here:
http://www.nintendonerds.com/forums/
...has a button at the end (magnifying glass) that shows/ hides a search bar. I personally dislike that and I want it to always show. By default, it's hidden unless that magnifying glass button is clicked on.
I tried changing "display:none" to "display: inline-block" for the #search ID but something is controlling that to where it's still hidden by default.
Am I overlooking something simple here, or does this go beyond CSS or HTML?
Any help is greatly appreciated.
Thanks,
Kevin
Or, if you want keep the functionality of making the form show and hide but just want to make it show by default, just comment out this first line (it's what causing it to be invisible on page load):
Line 37 from main.js:
Beaten to it!