Header Tweaks
As my site will be based around a single (smallish) city I was wondering if it was possible to remove the "Near" field on the search bar. I created a header.php file in my child theme and removed the following code
Code:
<div class="search-location">
.....
</div>
Is this the right way to do it or will I need to change anything elsewhere ?
I had an alternative thought that maybe I should leave the Near field and turn it into a drop down box and display the different districts of the city.
Code:
<select type="text" name="location" id="search-location" class="text">
<option value="District1" selected>District 1</option>
<option value="District2">District 2</option>
<option value="District3">District 3</option>
<option value="District4">District 4</option>
<option value="District5">District 5</option>
</select>
This worked okay but drop box field was the default drop down box with no styling.
Before I start from scratch and try and work out nice styling for this I wondered if this was already available in the code anywhere
EXTRA QUESTION
Can the breadcrumbs be moved beneath the map when displayed as widget "List Page Top Sidebar" ?