Note that there are some explanatory texts on larger screens.

plurals
  1. PORefresh dependent div
    text
    copied!<p>I have two web pages combined in one. One page is a navigation menu, the second is the actual content. </p> <p>Both pages embeded in their own div and then those two divs included in another one(main). </p> <p>The problem is that the menu might change its size from time to time(it has hover menu elements) and the second page has its background as image repeated till the bottom of the page. So when the menu's size increases, a bit of the second page stays blank. </p> <p>How can I get the second part of the page to repaint the background, when the first page changes it height? </p> <p>Any help of advice will be much appreciated. </p> <p>UPDATE </p> <p>Here is a part of the second page's css. </p> <pre><code>#servicesTextarea {min-height:229px !important; border-top:solid 3px #009ba7; background:#f2fafb url(../images/service_text_bk.gif) repeat-x right bottom;} </code></pre> <p><strong>UPDATE 2</strong></p> <p>Here is the div structure that I have </p> <pre><code>&lt;div id="servicesStage"&gt; &lt;div id="servicesNav"&gt; &lt;h2&gt;&lt;a href="our_services.php"&gt;Our Services&lt;/a&gt;&lt;/h2&gt; &lt;ul&gt; &lt;li &gt;&lt;a href="software.php"&gt;&lt;i&gt;Fios&lt;/i&gt; Software&lt;/a&gt; &lt;ul class=navigation&gt; &lt;li &gt;&lt;a href="software_fios_enterprise.php"&gt;&lt;i&gt;Fios&lt;/i&gt; Enterprise&lt;/a&gt;&lt;/li&gt; &lt;li &gt;&lt;a href="software_fios_csa.php"&gt;&lt;i&gt;Fios&lt;/i&gt; CSA&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li &gt;&lt;a href="managed_services.php"&gt;Managed Services&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div id="servicesTextarea"&gt; &lt;div class="padding"&gt; &lt;h4&gt;Randon text&lt;/h4&gt; &lt;ul&gt; &lt;li&gt;&lt;b&gt;&lt;a href="software.php"&gt;Option 1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;b&gt;&lt;a href="consulting.php"&gt;Option 2&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p></p> <p>As I mentioned before the serviceNav div contains a navigation menu that might increase its size, and I want the background of the servicesTextarea to get updated. </p> <p>Here is the picture of what I'm trying to avoid <img src="https://i.stack.imgur.com/jheNy.jpg" alt="enter image description here"></p>
 

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