03/29/2018 at 8:23 pm
#457142
Keymaster
@ Paul
RE: Right now the ‘Select Category’ tab looks to long, it goes across the entire page from left to right.
That is due to a style the theme applied globally to select drop downs. Please try adding this to the theme’s custom CSS area:
#cn-cmap form.cn-form select.cn-category-select {
width: auto;
}
RE: On the “Search Bar” tab, and the magnifying glass on the search bar is not the same size. The magnifying glass is a little smaller than the search bar, I like it too be the same sizes
This also is due to a theme style overriding the template. Add this to the theme’s custom CSS area:
#cn-list span input,
#cn-list span input[type=text] {
min-height: auto;
}
After these two CSS statements are added that should fix the the display. Hope that helps.