Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions src/assets/css/simply-rets-client.css
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,10 @@ Most of these elements also have id's for you to use specifically.
margin-bottom: 10px;
}

.sr-minmax-filters input {
max-width: 100% !important;
}

#sr-search-keywords {
width: 70%;
}
Expand Down Expand Up @@ -758,10 +762,24 @@ elsewhere, this should be a breeze.
width: 25%;
}

.sr-search-submit-sort .sr-search-submit-wrapper {
width: 50%;
display: inline-block;
}

.sr-search-submit-sort .sr-search-sort-wrapper {
width: 50%;
display: inline-block;
}

.sr-sort-wrapper {
text-align: right;
display: inline-block;
float: right;
margin: 10px 25px 0px 0px;
width: 49%;
}

.sr-sort-wrapper select {
width: 50%;
}

@media screen and (max-width: 576px) {
Expand Down
9 changes: 7 additions & 2 deletions src/simply-rets-shortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,13 @@ public static function sr_search_form_shortcode( $atts ) {
</div>
</div>

<div>
<input class="submit button btn" type="submit" value="Search Properties">
<div class="sr-search-submit-sort">
<div class="sr-search-submit-wrapper">
<input
class="submit button btn"
type="submit"
value="Search Properties" >
</div>

<div class="sr-sort-wrapper">
<label for="sr_sort">Sort by: </label>
Expand Down