My question is on the SSEP - Site Search Engine script ( https://coursesweb.net/php-mysql/ssep-si ... hp-ajax_s2 )
My host provider is going to install it for me but told me it would only go into the page on the upper left corner.
I would like to know if that is true and is there a way to put it on the upper right corner as my web page is already set and the search would not be good on the upper left.
Thank you, i look for your response.
SSEP - Site Search Engine: Changing search form position
-
- Posts:1
SSEP - Site Search Engine: Changing search form position
Admin
Posts:805
Hello
You can easily change the position of the search form in the SSEP script. Just edit/ modify the css settings of the #search element in the "search_style.css" file (and "search_style_mobile.css" for mobile devices) in the "templ/" folder:
For example, to put the search in the upper right, change "left:0;" with: "right:0;".
- For any other style setting, edit the css properties in those two css files.
You can easily change the position of the search form in the SSEP script. Just edit/ modify the css settings of the #search element in the "search_style.css" file (and "search_style_mobile.css" for mobile devices) in the "templ/" folder:
Code: Select all
#search {
position:absolute;
top:-2em;
left:0;
width:14.5em;
padding:0;
text-align:left;
}
- For any other style setting, edit the css properties in those two css files.