Results 1 to 5 of 5

Thread: ( ( add to favorites ) )
      
   

  1. #1
    FTinocoJr is offline Sergeant
    Join Date
    Nov 2006
    Location
    Las Vegas, NV
    Posts
    32

    Cool ( ( add to favorites ) )

    Yeap!

    I've looked and searched on all the major search engines and
    NOT any website was able to explain, show or give me the right info.

    Here is my questions, I want to add a "Add to Favorite button"
    on my site, But I want to use my own image.

    I've just created my first site for myself and if you would go see the
    website the image is on the top right hand is a "little download round button"
    that I want to activate with the "Add to Favorites" link.

    Can someone please help me???
    Can some one please write me the code???
    Or where should I go to find the code???

    This has been driving me MAD (Insane) all week!!!

    I inturn will help three people with any questions if I can.

    I have been building sites with bluevoda for close to 10 years, so I
    think I would know a thing or two, maybe but don't hold it on me.

    This project is holding me back from starting my new business.
    Here is the link by the way http://www.TheChicagoMillionairesGroup.com

    Ok, Thank you and have a warm and safe holiday season everyone!!!
    This has been Frank T, Jr.

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: ( ( add to favorites ) )

    Hi, 10 years eh!.
    Add the 1st part of the code to the head of your page & the 2nd to an html box on the front of your page. Ensure the image is in the same directory (Public_html)

    1ST


    <script type="text/javascript">
    function bookmarksite(title,url){
    if (window.sidebar) // firefox
    window.sidebar.addPanel(title, url, "");
    else if(window.opera && window.print){ // opera
    var elem = document.createElement('a');
    elem.setAttribute('href',url);
    elem.setAttribute('title',title);
    elem.setAttribute('rel','sidebar');
    elem.click();
    }
    else if(document.all)// ie
    window.external.AddFavorite(url, title);
    }
    </script>

    2nd


    <a href="javascript:bookmarksite('The chicago millionaires group', 'http://www.thechicagomillionairesgroup.com/')"><img src="small_icon.jpg" id="Image2" alt="" align="top" border="0" style="width:45px;height:45px;"></a>


    Good luck

  3. #3
    FTinocoJr is offline Sergeant
    Join Date
    Nov 2006
    Location
    Las Vegas, NV
    Posts
    32

    Smile Re: ( ( add to favorites ) )

    Hi and Thank you

    Everything worked fine.

    In regards to my 10 years, 6 have been using bluevoda and the rest where just other website building softwares that I was not comfortable using until Bluevoda came along.

    Another note if I may add, I did know how to add a favo link but with just text not an image, incredible as it sounds this was my first image add to favo link ever done, so thank you again.

    Happy Holidays!
    FTJr

  4. #4
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: ( ( add to favorites ) )

    Hi, just remove the image link & add text on the 2nd part. IE.

    <a href="javascript:bookmarksite('The chicago millionaires group', 'http://www.thechicagomillionairesgroup.com/')">Bookmark this site</a>

  5. #5
    travlinman is offline Major
    Join Date
    Feb 2009
    Location
    Gran Canaria
    Posts
    444

    Default Re: ( ( add to favorites ) )

    Hmm...add to favorites link?

    for a site that never can be found by the browser.

    Where is this phantom site?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49