03/07/2017 at 1:12 pm
#414616
Keymaster
@ Daniel
re: I just can’t figure out how can I make the search box and the filter drop down lists taller.
You can use the following to change the height of the search input.
#cn-search-input {
height: 60px;
}
input#cn-search-submit {
height: 60px;
}
Changing the height of the category select drop down will be anything but easy. It would likely take my most the day to come up with the CSS to change it.
re: I would like to put the two boxes one next to the other.
The following should do it:
#cn-cmap .cn-search {
float: none;
}
You’ll have to tweak these to suit. Hope that helps.
