Forums › Forums › Search & Filter Pro › Appearance of Widget not right
Tagged: appearance, css, search form, style, theme, widget
- This topic has 8 replies, 2 voices, and was last updated 10 years, 7 months ago by
Ross.
Viewing 8 posts - 1 through 8 (of 8 total)
-
Ross Moderator(Private) January 12, 2015 at 4:31 pm #10144
Hey Bill
Yeah this is just your themes CSS styling “taking over”…
So you’ll need to add some custom CSS to get it behaving a bit more like the other themes…
Here’s a start for you anyway:
.searchandfilter > ul > li { padding: 10px 0; } .searchandfilter > ul li:before { display:none; } .searchandfilter > ul > li input[type='checkbox'], .searchandfilter > ul > li input[type='radio'] { width:auto; }
This should help get you started, and if you’re not seeing the changes you want try adding
!important
to the css rules.Basically, the main mistake your theme is doing is setting all
input
to100%
width, this includes checkboxes… which it should not!After this, there are some
:before
pseudo elements, which are adding the “>>” arrows to all your list items…Thanks
-
AuthorPosts
Viewing 8 posts - 1 through 8 (of 8 total)