01/19/2018 at 3:25 pm
#448105
Keymaster
@ Nick
That is going to be tricky to do with CSS because the search input is rendered before the category drop down. You can try playing with absolute positioning of those objects.
Try adding the following to the theme’s custom CSS area:
#cn-tile-plus .cn-search {
float: none;
padding-bottom: 15px;
top: 40px;
position: absolute;
}
#cn-tile-plus .chosen-container {
position: absolute;
}
#cn-tile-plus #cn-list-body {
padding-top: 80px;
}
You may have to add the !important flags. Tweak as desired.
Hope this helps!