Thank you for all the hard work!
I've been struggling to figure out how to align blocks next to each other within a div. It may not be that difficult, but I just can't seem to find an elegant solution...
Here is the HTML code snippet:
<div class="test">
test
<div class="container">
<div class="row">
<div id="header_logo"></div>
<div id="tmsearch" class="clearfix">
<span class="btn-toogle active"></span>
<form id="tmsearchbox">
<input name="controller" value="search" type="hidden">
<input name="orderby" value="position" type="hidden">
<input name="orderway" value="desc" type="hidden">
<input class="tm_search_query form-control ac_input" id="tm_search_query" name="search_query" placeholder="What are you shopping for today ?" value="" autocomplete="off" type="text">
</form>
<button class="submit-buttons" id="search-bar-button" type="submit">Search</button>
</div>
</div>
</div>
</div>
Check out this JSFiddle link for more: https://jsfiddle.net/x7juoq64/6/
I would greatly appreciate some guidance from the front-end developer community and please forgive me for my novice question.