But the HTML is very subtle so I am miserably failing. I am looking forward to the possible suggestion to implement this change w/o making too many changes in CSS and HTML.
Paul’s code is not subtle. it’s simple and straightforward. It follows the known and documented rules of HTML and CSS all of which are found on-line.
Without clouding the issue with silly speculation, show us a working page with the code that you tried and explain why you chose the elements and CSS that you did to add the third main section. Using your thinking and code, we will then explain where you went wrong and how to make it right.
If you have difficulty explaining your thinking, please take a formal course in HTML and CSS from a reputable institution. You will learn basic terminology as you learn HTML element and CSS rule behaviors and how they work together. You could have done that at least 3 times during the past year and been at the forefront of the learning curve now.
Our reward for being here for members lies in the satisfaction that we feel when members become stronger by learning something new about HTML/CSS or problem solving. Independence.
I’m not sure what you mean by “miserably failing”. Judging by the image you posted it looks like you were successful.
Anyway, perhaps part of the difficulty you’re having is because you’re looking at too much at once?
If you look at Paul’s CodePen a section that closely resembles your image is that before the first horizontal rule.
Fortunately, Pauls code has the nested elements nicely indented which makes it easier to remove sibling elements below that first horizontal rule. After adding classes to the remaining H2 tags in the order in which they appear in the HTML there is this much less amount of HTML
I can see that I want a “copy” of the “M1” below “M2” and “S1” and “S2” to extend another row down. I’ll try adding that copy after the <div class="inner-content main"> group
<div class="sidebar">
<h2 class="first_sidebar">Sidebar</h2>
<p>Lorem Ipsum.</p>
</div>
</div>
<!-- start new -->
<div class="inner-content">
<h2 class="new_main">Main</h2>
<p>Billions upon billions upon billions?</p>
</div>
</div>
<!-- end new -->
<div class="sidebar">
<h2 class="second_sidebar">Sidebar</h2>
<p>Lorem Ipsum.</p>
</div>
</div>
give the new H2 CSS similar to the others, and test to see how it looks
Well, on the one hand, not as good as I had hoped, but on the other hand Sidebar 2 has heightend without me needing to do anything, so that’s a plus. And I now have some confidence that the HTML is good enough to move on to fixing up the CSS issues.