User Christoph - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:49:32Z http://stackoverflow.com/feeds/user/132873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div 0 Different background-color for left and right half of div Christoph 2009-08-14T11:20:03Z 2009-08-14T11:27:56Z <p>Hi, I have a centered div layout. The left side of the div in the background should be white and the right side should be green. Both should extend to infinity. </p> <p>I think it should be quite simple but I just don't get it right now. Any easy solution? Thank you!</p> <pre><code>----------------------------------------------------- (div 1) __________________________ |(div 2) | | | | | | | | &lt;- white | white | green | green -&gt; | | | | | | |________________|_________| ------------------------------------------------------ </code></pre> http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h 1 jQuery nextAll -- Click on h-element toggles all p-elements until next h Christoph 2009-07-03T15:54:28Z 2009-07-03T21:25:29Z <p>Hi, i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:</p> <pre><code>&lt;h3&gt;The First Question&lt;/h3&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;h3&gt;The Second Question&lt;/h3&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; </code></pre> <p>How can I toggle all p elements belonging to a certain question? My JS toggles ALL following p elements on the page:</p> <pre><code>$(document).ready(function(){ $("p").hide(); $("h3").click(function(){ $(this).nextAll("p").toggle(); }); }); </code></pre> <p>(I cannot use div's or classes). Thank you for any help!</p> http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div/1277370#1277370 Comment by Christoph on Different background-color for left and right half of div Christoph 2009-08-14T12:32:11Z 2009-08-14T12:32:11Z Thank you, works out pretty cool! Didn't even know you can stretch bg-images. http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div/1277373#1277373 Comment by Christoph on Different background-color for left and right half of div Christoph 2009-08-14T11:35:54Z 2009-08-14T11:35:54Z But this only works if the line between the two outer divs is exactly at 50% of the screen (which it is not in my layout)? http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div/1277354#1277354 Comment by Christoph on Different background-color for left and right half of div Christoph 2009-08-14T11:28:09Z 2009-08-14T11:28:09Z The centered div2 is already inside that other div1. It is centered by using margin:auto. I don't think I can put two other divs inside there? http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h/1079969#1079969 Comment by Christoph on jQuery nextAll -- Click on h-element toggles all p-elements until next h Christoph 2009-07-03T16:12:28Z 2009-07-03T16:12:28Z Thank you so much, works perfectly!