Jump to content

auto margin problem


jonndoe45

Recommended Posts

i had to put in effect a javascrit workaround to a css problem (not sure if it is a bug), where the margin-left, margin-right auto thing doesn't seem to work, on either the ladies listing page or the profile page

 

i have put the auto margin in the root div (called mainpix) , not worked, so tried it on a content div witj just the auto margin and a width and still not worked so gave up and just used javascript to do a margin-left shift of the content

 

my web site is www.thaiwife.org, mydefs.css is the stylesheet

 

JD

Link to comment
https://forums.phpfreaks.com/topic/141543-auto-margin-problem/
Share on other sites

hi

 

this will center the content on the page:

 

#outer_container {

    width: 100%;

}

#inner_container {

    margin: auto;

    width: 600px;

}

#content_container {

    width: 600px;

}

<div id="outer_container">
    
    <div id="inner_container">

        <div id="content_container">flngfgh sdfdfgdfg fgdfgdfg</div>

    </div>

</div>

Link to comment
https://forums.phpfreaks.com/topic/141543-auto-margin-problem/#findComment-743352
Share on other sites

  Quote

hi

 

this will center the content on the page:

 

#outer_container {

    width: 100%;

}

#inner_container {

    margin: auto;

    width: 600px;

}

#content_container {

    width: 600px;

}

<div id="outer_container">
    
    <div id="inner_container">

        <div id="content_container">flngfgh sdfdfgdfg fgdfgdfg</div>

    </div>

</div>

 

This is div soup!

 

body {
  width: 100%;
}
#html_page {
  width: 1000px;
  margin: 0 auto;
}

<body>
  <div id="html_page">
     Contents should be centered!
  </div>
</body>

Link to comment
https://forums.phpfreaks.com/topic/141543-auto-margin-problem/#findComment-743939
Share on other sites

the cod you have done is basically the same as mine. i use more <div> elements because embedding things makes cross browser easier! plus i like to have my code broken down more clearly...personal preference!

Link to comment
https://forums.phpfreaks.com/topic/141543-auto-margin-problem/#findComment-744082
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.