Hello, I am trying to figure out how to center the ssl badge on my site below the footer logo? I pasted the code in the footer but don't like it positioning. I have know idea what to do. Check and please give me a suggestion. city4ums.com Thanks,
You can try wrapping the siteseal in a wrapper div: HTML: <div id="sslwrapper"> <span id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getSeal? sealID=aKJFn8ZGP19bJRXBThcJxqgLlE7m5nzNZpT85DXEGs65KcDbiAJk"></script><br/><a style="font-family: arial; font-size: 9px" href="https://www.godaddy.com/ssl/ssl-certificates.aspx" target="_blank">secure websites</a></span> </div> CSS: #sslwrapper{ display:block; margin:0px auto; width:1000px; height:80px;} Code (markup): Note: change width to the width of the body in pixels and height to the height of your ssl picture. (I just took a rough guess) I think that should work. Cheers