Announcement

Collapse
No announcement yet.

Lock symbol not showing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Lock symbol not showing

    Recently something has changed on our site which has caused the secure lock symbol to not show in the bottom right of IE.

    The site is still secure, the cart pages display the proper https:// in the urls. Also our Actinic settings have not changed, the SSL is marked to on in the cart & login pages only.

    I've checked all the images in Act_Primary to insure that they are https linked also.

    Can anyone check out our code & see what may be wrong? www.uniformcorner.com

    #2
    I'd imagine it's this:
    Code:
    <div align="center"> <script language="JavaScript" src="http://seals.networksolutions.com/siteseal/javascript/siteseal.js" type="text/javascript">
    </script><script type="text/javascript">SiteSeal("https://www.uniformcorner.com/images/ns-seal.gif", "NETSP", "none");</script></div>
    David
    Mandrake Press Ltd

    <a href="http://www.mandrake-press.co.uk" target="_blank">www.mandrake-press.co.uk</a>

    Comment


      #3
      David,

      I missed that one...thanks!

      Well I tried it, totally refreshed the site & am still having the same problem. Any further ideas?

      Comment


        #4
        I'm kinda clutching at straws now, but it might be to do with this:

        Code:
        <!--
        function vwImg(img,w,h) { 
        if(window.imgWindow){ 
        window.imgWindow.close() 
        } 
        imgWindow=window.open('','imgWindow','width='+w+',height='+h+',left=0,top=0'); 
        if(window.imgWindow){}else 
        { 
        alert("You have POP-UP stopping software enabled or your browser does not support POP UP windows. Please disable the POP-UP stopping software or use a different browser to view the images on this page.") 
        } 
        var imgNameLength = img.length - 10; 
        var windowTitle = img.substr(35,imgNameLength);
        imgWindow.document.write('<html><head><title>'+windowTitle+'</title><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><a href="#" onClick="javascript:window.close();" alt="Close Window" title="Close Window"><img src="'+img+'" border="0"></a></body></html>'); 
        }
        function MM_swapImgRestore() { //v3.0
        var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
        }
        function MM_preloadImages() { //v3.0
        var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        }
        function MM_findObj(n, d) { //v4.01
        var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
        if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
        for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
        if(!x && d.getElementById) x=d.getElementById(n); return x;
        }
        function MM_swapImage() { //v3.0
        var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
        if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
        }
        //-->
        TBH I don't understand how that works but it appears to be generating a web page with an image on. Possibly it's that image which is upsetting things, but one of our more knowledgable members would have to confirm that.
        David
        Mandrake Press Ltd

        <a href="http://www.mandrake-press.co.uk" target="_blank">www.mandrake-press.co.uk</a>

        Comment


          #5
          In other news, if you "Cancel" from the checkout, you get pushed to this page: http://www.uniformcorner.com/confirmation.htm
          David
          Mandrake Press Ltd

          <a href="http://www.mandrake-press.co.uk" target="_blank">www.mandrake-press.co.uk</a>

          Comment


            #6
            David,

            Gah thanks, I didn't realize the button was doing that.

            Unfortunately I need that Javascript code. At one time though the symbol was showing properly WITH this code. I don't understand why may conflict now, seems like it is an image somewhere?

            Comment


              #7
              I noticed the link to the stylesheet is using an http link rather than https. Could this be it? But usually when that happens, the web browser gives you an warning about a page containing a mixture of secure and insecure items, so I'm not sure.

              Comment


                #8
                Chris, that's it- it was the .css link! Thanks very much!!

                Comment

                Working...
                X