Page 1 of 1

Problem with search results page. Checkboxes in wrong place

Posted: Wed Jul 12, 2017 8:09 am
by CaptainHaddock
Hi,
In my site's search results page, the check boxes for “Search in subcategories” and “Search in product descriptions” are in the wrong place. They are to left of the white boxes where you enter search term and choose category. They should be next to text “Search in subcategories” and “Search in product descriptions” .
This problem has appeared recently but am not sure exactly when.
I've recently updated Journal theme ot latest version, not sure if that is cause.

How do I fix this?
Image
Thanks very much
Peter
Opencart v1.5.5.1

Re: Problem with search results page. Checkboxes in wrong place

Posted: Wed Jul 12, 2017 12:55 pm
by DigitCart
Add this to your css file:

Code: Select all

#content.search-page .content input[type="checkbox"] {
  float: none;
}
if doesn't work, try using !important:

Code: Select all

#content.search-page .content input[type="checkbox"] {
  float: none !important;
}
Then clear your theme and your browser cache.
Image

Re: Problem with search results page. Checkboxes in wrong place

Posted: Fri Jul 14, 2017 7:36 am
by CaptainHaddock
Thanks very much DigitCart! You fixed it.
Turn out the problem was caused by Journal theme. The theme developers have now fixed it in latest release on Themeforest.

Re: Problem with search results page. Checkboxes in wrong place

Posted: Fri Jul 14, 2017 12:58 pm
by DigitCart
CaptainHaddock wrote:
Fri Jul 14, 2017 7:36 am
Thanks very much DigitCart! You fixed it.
Turn out the problem was caused by Journal theme. The theme developers have now fixed it in latest release on Themeforest.
You're welcome.