Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Volusion for my e-commerce website, and would like to add Facebook and Twitter buttons/icons to the footer of my website (sort of like the "cc-wiki" and "Peak Internet" logos in the footer of this page).

Here is the current HTML code for my footer. What code do I add to leave the Copyright and "Powered by Volusion" text left-justified, and add the desired buttons on the same line, but right-justified?

<div id="footer_bottom">
    <!--<div id="footer_right" class="right">-->

    <!--</div>-->
    <div id="copyright"><a href="/terms.asp">Copyright &copy; <script type="text/javascript">document.write((new Date()).getFullYear());</script>  &nbsp;Config_CompanyNameLegal&nbsp; All Rights Reserved.</a>


Powered by Volusion

share|improve this question

1 Answer

You will have to float: left or float:right on your divs (something of this effect, it's untested just play with CSS).

<div id="footer_bottom" style="display: block; width: 100%">
    <div id="powered" style="float: left">Powered by Volusion</div>

    <!--</div>-->
    <div id="copyright" style="float:right" ><a href="/terms.asp">Copyright &copy; <script type="text/javascript">document.write((new Date()).getFullYear());</script>  &nbsp;Config_CompanyNameLegal&nbsp; All Rights Reserved.</a>
     </div>
</div>

Bear in mind that you should have a CSS (stylesheet) and put everything that I put inside style="" into CSS.

e.g.

/* CSS */
#powered {
   float: left;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.