Jump to content

georgene

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by georgene

  1. Answer to this post https://www.helionet.org/index/topic/43430-have-my-ricky-account-again/ but I know you won't see it because is marked as "solved": 

    I know for sure that I had the Georgene account. I started this query with it https://www.helionet...r-for-heliohost/ on which it shows that I was a guest because my account was deleted. For some reason I had two accounts: georgene and georgeneal. 

    Anyways, thanks for unarchiving my ricky account.

  2. May I have my Ricky account back. 
     
    Username: georgene
     
    I also lost my helionet account with the same username and recreated it. But by accident I used the wrong email address. I lost my previous posts which I guess is normal but I don't know if it is possible to unarchive it and get everything back.
     
    Thank you for your help.

     

  3. Did you include jquery above this code? The jquery code you're using will only work if you load the jquery library before you try to run the code. The code to load jquery will look something like this:

    <script type="text/javascript" src="jquery.min.js"></script>
    

     

    Thank you!

  4. <html>
        
    <div id="loading"></div>
    <div id="realbody">
        //my real body here
    </div>
     </html>
    
    <style type="text/css">
    #loading {
        background: url('my-loading-gif.gif') no-repeat center center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 9999999;
    }</style>
    
    <script>
    function hideLoader() {
        $('#loading').hide();
    }
    
    $(window).ready(hideLoader);
    
    // Strongly recommended: Hide loader after 20 seconds, even if the page hasn't finished loading
    setTimeout(hideLoader, 20 * 1000);
    </script> 

    I wanted to have a gif that is presented when my website is loading and I found this code online. But when I tried it, it played over the real body and didn't leave when my page had finished loaded.

×
×
  • Create New...