On my website I am setting up a CGI search engine. I have it installed and working already, but it acts a little bit funny.
Well here is the problem, On my pages I can get the title to show up on my search results, but the description under it is not working. I get results like this:
document.write('\n') } function SwitchMenu(obj){ if(document.getElementById){ var el = document.getElementById(obj); var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change if(el.style.display!= "block"){ //DynamicDrive.com change for (var i=0; i if (ar[i].className=="submenu") //DynamicDrive.com change ar[i].style.display
Its a part of my <HEAD> that activates the javascript I use in my layout.
Does anyone know how I can get the search engines description to focus on my actually content in the <BODY>
Here is the HTML of the engine I am using incase it may help your answers:
<form action="/cgi-sys/entropysearch.cgi" target=searchwindow>
<br><input type="text" name="query" value="">
<input type="hidden" name="user" value="modega">
<input type="hidden" name="basehref" value="http://domainhere.com">
<input type="hidden" name="template" value="default">
<input type="submit" value="Search">
</form>
Thanks in advance everybody.