patricia.rd.93 Posted March 17, 2016 Share Posted March 17, 2016 (edited) Hello. I have a SSL certificate (AlphaSSL) and I would like to add the site seal in the footer of my shop online, as you can see on the screenshot that I attach. As I do not know how to do it, I ask you for help. The code for SSL certificate secure site seal is the following: <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> Regards. Edited April 15, 2016 by patricia.rd.93 (see edit history) Link to comment Share on other sites More sharing options...
tdr170 Posted March 17, 2016 Share Posted March 17, 2016 (edited) For this you will need to edit the blockcontactinfos.tpl file located in themes/yourtheme/modules/blockcontactinfos. At the very bottom after the closing </ul> and before the closing </section> add like this: (you can copy and paste the code below) <div class="rights"> <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> </div> As a little extra you could also add just below this a copyright code like this (Add this before the closing </div> tag from the code above) <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} - {l s='All Rights Reserved'}</span> Now add this to the global.css file located in themes/yourtheme/css (you can change the color from fff to whatever color you desire) .copyright{color:#fff;font-weight:bold;text-shadow: 1px 1px #000} If you use the copyright code the complete code you will need to paste into the blockcontactinfos is this: <div class="rights"> <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} - {l s='All Rights Reserved'}</span> </div> You can see this in action on my site here https://team-shepherdusa.com Edited March 17, 2016 by tdr170 (see edit history) 1 Link to comment Share on other sites More sharing options...
patricia.rd.93 Posted March 17, 2016 Author Share Posted March 17, 2016 For this you will need to edit the blockcontactinfos.tpl file located in themes/yourtheme/modules/blockcontactinfos. At the very bottom after the closing </ul> and before the closing </section> add like this: (you can copy and paste the code below) <div class="rights"> <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> </div> As a little extra you could also add just below this a copyright code like this (Add this before the closing </div> tag from the code above) <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} - {l s='All Rights Reserved'}</span> Now add this to the global.css file located in themes/yourtheme/css (you can change the color from fff to whatever color you desire) .copyright{color:#fff;font-weight:bold;text-shadow: 1px 1px #000} If you use the copyright code the complete code you will need to paste into the blockcontactinfos is this: <div class="rights"> <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} - {l s='All Rights Reserved'}</span> </div> You can see this in action on my site here https://team-shepherdusa.com Hello. Perfect. Thank you very much. Regards. Link to comment Share on other sites More sharing options...
patricia.rd.93 Posted April 15, 2016 Author Share Posted April 15, 2016 Hello, tdr170. I have done what you told me about copyright, but, as you can see on the screenshot that I attach, it is not like in your site. Regards. Link to comment Share on other sites More sharing options...
tdr170 Posted April 15, 2016 Share Posted April 15, 2016 I may see the issue in your code the closing </span> has this script after it <script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> Try moving the closing </span> to after this <div class="rights"> <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl....ldcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script></span> <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} - {l s='All Rights Reserved'}</span> </div> If that does not work you could also add a <br /> after the closing </script> but before the opening <span of the copyright code. You could also leave a link to your site and I can take a look and see what works best. 1 Link to comment Share on other sites More sharing options...
patricia.rd.93 Posted April 15, 2016 Author Share Posted April 15, 2016 I may see the issue in your code the closing </span> has this script after it <script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script> Try moving the closing </span> to after this <div class="rights"> <span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl....ldcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script></span> <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} - {l s='All Rights Reserved'}</span> </div> If that does not work you could also add a <br /> after the closing </script> but before the opening <span of the copyright code. You could also leave a link to your site and I can take a look and see what works best. Hello. Ok. Thank you very much. Regards. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now