Can't get search bar & input form on same line!
-
So I’ve searched many places but I can’t seem to figure this out. Do i HAVE to put the search button and input-text in a LIST to get it working? display:inline; doesn’t seem to do the trick for me, regardless of what size I make the text box / submit button.
The site I’m using it on is: https://theultimateblower.com
<form method=”get” class=”nice” id=”searchform” action=”<?php echo esc_url( home_url( ‘/’ ) ); ?>”>
<input type=”text” class=”input-text” name=”s” id=”s” placeholder=”<?php esc_attr_e( ‘Search’, ‘theultimateblower’ ); ?>” />
<input type=”submit” class=”nice small radius blue button” name=”submit” id=”searchsubmit” value=”<?php esc_attr_e( ‘Search’, ‘theultimateblower’ ); ?>” />
</form>Help would be appreciated! Thanks!
- The topic ‘Can't get search bar & input form on same line!’ is closed to new replies.