We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Put "bookmark us" on your site | Forum

Pete
Pete Sep 3 '12

Edit code and log into admin ,click on settings ,and page settings and put code into header .

 

..
<font color="#:FFFFFF" size="1" face="Arial">         
<script>

// (C) 2012 www.fancyflirts.co.uk
// http://www.fancyflirts.co.uk
// Free for all users, but leave in this  header

// message to show in non-IE browsers
var txt = "Bookmark Us!"

// url you wish to have bookmarked
var url = "http://www.your website here";

// caption to appear with bookmark
var who = "Bookmark Us"

// do not edit below this line
// ===========================

var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
   document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" ');
   document.write('onMouseOver=" window.status=')
   document.write("txt; return true ")
   document.write('"onMouseOut=" window.status=')
   document.write("' '; return true ")
   document.write('">'+ txt + '</a>')
}else{
   txt += "  (Ctrl+D)"
   document.write(txt)
}
</script>
</font>

 

its on top left of my website ,www.fancyflirts.co.uk if you want to view it.

The Forum post is edited by Pete Sep 3 '12
Yves
Yves Sep 8 '12
can't click it
Wilson
Wilson Oct 15 '13
I have been able to use this code just fine. You can change the url link to the image and more with this code:

<a href="javascript:window.external.AddFavorite('http://yourdomain.com', 'Your Site Name')"style="font-size:12px;color:#ffffff;font-family:verdana;"><img src="http://www.htmlbasix.com/images/notepad.gif"border="0"width="88"height="31"valign="top"align="right"></a>


webpage link: http://www.htmlbasix.com/bookmark.shtml
The Forum post is edited by Wilson Oct 15 '13