Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Center area post/pages (http://forum.bytesforall.com/forumdisplay.php?f=32)
-   -   [SOLVED] Unable to center table on page (http://forum.bytesforall.com/showthread.php?t=22876)

lrydant Oct 15, 2014 09:15 AM

[SOLVED] Unable to center table on page
 
Working on table that contains images at http://www.mysweetmocha.com/manual-c...ahead-of-time/

I followed instructions found in this forum but table does not center on page.

html on page:
<div id="table1">
</div>

css insert
#table1 {
margin-left: 03% ;
margin-right: auto;
}

I did try auto instead of 03% - not work. Thank you for any assistance.

juggledad Oct 15, 2014 09:42 AM

Try this
HTML Code:

div#table1 {
    width:100%;
    height:100%;
  }
 div#table1 table {
    margin: 0 auto;
  }


lmilesw Oct 15, 2014 09:43 AM

To center an item with CSS you also have to give it a width and then set the side margins to auto.

lrydant Oct 15, 2014 10:21 AM

Won't pretend to understand the code but the code you provided worked. Thank you both and thank you for quick replies.


All times are GMT -6. The time now is 11:05 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.