Is there any way to manually set the width of the search box? It seems to be fixed and it's breaking the layout of the theme I'm using. It gets pushed off to the right, almost entirely off the screen. Any help will be greatly appreciated.
Is there any way to manually set the width of the search box? It seems to be fixed and it's breaking the layout of the theme I'm using. It gets pushed off to the right, almost entirely off the screen. Any help will be greatly appreciated.
It seems to populate the search form into a table.
You can make adjustments by editing the simplemap.php file in the folder - plugins/simplemap/classes.
Around line 1800 you will find an array that controls the way the table is displayed - you could try changing the number of columns to 1 or 2 instead of 3 by changing this property...
'search_form_cols' => 3,
The width of the SimpleMap divs are set in General Settings. Beyond that each individual field as well as most other HTML elements have CSS IDs or class names associated with them so that you can control it via CSS.
You must log in to post.