Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I maintain div in center on page resize?
    primarykey
    data
    text
    <p>well generally speaking, I know how to solve the above problem presented in the subject line. Simply specify div width and set margins to auto right. Well the problem lies with a specific div I'm including in a website, which maintains a centralized position on page resize just as I would have it, but would fail to do so as soon as I include two child divs inside it, one positioned to the left and the other to the right. I will include the HTML and CSS for the 3 divs in question. I will exclude the contents for the left and right child divs because they are not related to this problem.</p> <p>html</p> <pre><code> &lt;div class ="page_content"&gt; &lt;div class ="page_content_left"&gt; &lt;/div&gt; &lt;!--closes page content left--&gt; &lt;div class = "page_content_right"&gt; &lt;/div&gt; &lt;!--closes page content right--&gt; &lt;/div&gt; &lt;!--closes page content--&gt; </code></pre> <p>css</p> <pre><code> .page_content{ margin:0px auto; width:1000px; height:590px; position:relative; top:50px; -moz-border-radius:8px; border- radius:8px; border:none; } .page_content_left{ position:absolute; top:0px; left:0px; width:35.0%; min- height:590px; -moz-border-radius:8px; border-radius:8px; /* fallback */ background: #000000; /* Mozilla: */ background: -moz-linear-gradient(top, #100f0f, #000000); /* Chrome, Safari:*/ background: -webkit-gradient(linear, left top, left bottom, from(#100f0f), to(#000000)); /* MSIE */ filter: progid:DXImageTransform.Microsoft.Gradient( StartColorStr='#100f0f', EndColorStr='#000000', GradientType=0); /*opera*/ background-image: -o-linear-gradient(top,#100f0f,#000000); } .page_content_right{position:absolute;top:0px;left:351px;width:64.9%;min- height:590px;-moz-border-radius:8px; border-radius:8px; /* fallback */ background: #000000; /* Mozilla: */ background: -moz-linear-gradient(top, #100f0f, #000000); /* Chrome, Safari:*/ background: -webkit-gradient(linear, left top, left bottom, from(#100f0f), to(#000000)); /* MSIE */ filter: progid:DXImageTransform.Microsoft.Gradient( StartColorStr='#100f0f', EndColorStr='#000000', GradientType=0); /*opera*/ background-image: -o-linear-gradient(top,#100f0f,#000000); } </code></pre> <p>And the page in question can be found at this url: </p> <p>creativewizz.com/testimonials_page.php</p> <p>The main parent div (page_content) has invisible borders and the left and right child divs are the divs with headings, "testimonials" and "write a testimonial" respectively. When the child divs are included, not only do their parent div not centralize on resize, but also the footer div, bordered at the top by the white horizontal line. How can I fix this???</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload