Latest video

Do you like this page? Share it with friends or give to it a "like" vote.

 

How tu put our service manuals search engine in your web page

PrintE-mail

Sunday, 02 August 2009 01:03 Written by Aitor Last Updated on Sunday, 02 August 2009 02:40

You can put our service manuals search engine on your page especially if your page is made with joomla. In this article we will show you the steps to perform this operation depending on whether you use html or joomla.

1. If your web page is made with Joomla:
Simply create a web address as embedded url (wrapper) in the main menu. To do this you just have to go from the joomla backend (administration) to Menus -> Main Menu. Already within our main menu we click on the "New" button which will show a window where we can choose the type of menu link, in our case we chose "Wrapper". In the window that will show we fill the usual data Title and Alias, on the right side (parameters) we have to put the following:

  •  Basic Parameters
    • Wrapper URL: http://www.manualesdemecanica.com/cgi-bin/buscador/search.pl
    • Scrollbars: No
    • Width: 100%
    • *Height: 1800
  • Advanced Parameters
    • Auto height: No
    • Auto add: Si

With these parameters all wil works fine.
* If you do not want a page with high height we can reduce this number but we must activate the scrollbars.

2. If your page is made with HTML:
If you want the search results appear in an iframe on your page just need to put the following code: 
<iframe width="100%" height="1800" scrolling="no" src="http://www.manualesdemecanica.com/cgi-bin/buscador/search.pl" frameborder="0"></iframe>
The disadvantage of this method is that our page text is placed below the search engine and the page have a great height (1800 px).

Another option that is very interesting is the code you see below, if you use this code you do not show the text and the results will open in a new page and does not require any iframe:

<form method="get" action="http://www.manualesdemecanica.com/cgi-bin/buscador/search.pl" target="_blank">
              <table cellspacing=0 cellpadding=1 width="400" align=center
            bgcolor=#000000 border=0>
                <tbody>
                <tr>
                  <td>
                    <table height="100%" cellspacing=0 cellpadding=0 width="100%"
                  align=center border=0>
                      <tbody>
                      <tr>
                        <td valign=center width="32%" bgcolor=#ffffff height=41
                      rowspan=2>
                          <center>
                             <img src="http://www.manualesdemecanica.com/images/stories/buscar.gif" width="115" height="50" alt="Buscar manuales de mecánica">
                          </center>
                        </td>
                        <td valign=center width="58%" bgcolor=#ffffff height=20>
                          <div align="center"><b> <font
                        color=#000000 face="Arial" size="2">
                            <input type=hidden value=1 name=Match>
                            <input type=hidden value=All name=Realm>
                            </font><font face=Arial color=#000000
                        size=2><< Service manuals >> </font></b></div>
                        </td>
                        <td valign=bottom width="10%" bgcolor=#ffffff height=41
                      rowspan=2 align="left">
                          <div align=left><font color=#000000>  <b>
                            <input type=image height=25 width=24
                        src="http://www.toptutoriales.com/images/enviar.gif" value=Submit
                        name=Submit>
                            </b></font></div>
                        </td>
                      </tr>
                      <tr>
                        <td valign=middle width="58%" bgcolor=#ffffff height=26>
                          <div align=center><font color=#000000>
                            <input value=""
                        style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; FONT-SIZE: 11px; BACKGROUND: #dddddd; BORDER-LEFT: #000000 1px solid; COLOR: #000000; BORDER-BOTTOM: #000000 1px solid; FONT-FAMILY: Verdana"
                        size=30 name=Terms>
                              
                            </font></div>
                        </td>
                      </tr>
                      </tbody>
                    </table>
                  </td>
                </tr>
                </tbody>
              </table>
</form>