Hi,
My site is
www.cpsextoys.co.ukI'm very much learning as I go but have previously successfully added infoboxes to the template of my site but now I'm stuck.
I've purchased Site Scanner from Go Daddy and have been provided with the Javascript code to display the Site Scanner image etc.
The only way I've managed to get the image to display is by creating a new infobox entitled site_scanner.php and pasting the javascript into this file with no other code at all. So now in my infobox_configure page it displays the new box BUT says its at the BOTTOM right of my page whereas its actually at the TOP RIGHT of my page template.
I'd like help to move it please (preferably to add it into the infobox with my SSL in). Alternatively, I want it displayed in an infobox with borders and a header such as the other boxes on my site.
I've googled, searched and tried what I've found but am still stuck, can anyone help please?
The code I usually use to install an infobox into mytemplate/boxes/ is as follows :-
Code:
<?php
/*
$Id: new_box.php
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright © 2001 osCommerce
Released under the GNU General Public License
*/
?>
<!-- new_box //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left',
'text' => BOX_HEADING_NEW_BOX
);
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left',
'text' => BOX_TEXT_NEW_BOX);
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- new_box_eof //-->
With new_box being changed as needed.
Then in english.php I do the following :-
Code:
// new_box
define('BOX_HEADING_CALL_ME_SOMETHING', 'Call me something');
define('BOX_TEXT_CALL_ME_SOMETHING', '<span id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getSeal?sealID=xxxxxxxxxxxxxxxx"></script><br/> </span>');
So what do I need to do to get the Site Scanner seal to display?
Any help would be great, thanks.