At 03:41 PM 8/15/2018, JFlorian wrote: >Pat A., > >Regarding the floats, such as: >.column2a {width: 50%; float: left;} >.column2b {width: 50%; float: left;} > > >How do I push content below to stay down (rather than floating to the >right)? Judy, you have to insert a block level element that fills the width of the page to prevent subsequent floats from sliding up to fill the empty space. You could use <.hr style="width: 100%; clear: both;"> choosing a background color so it shows or does not; but my preference is to insert a div with a class that I have defined in my style sheet as .clear {clear: both;} At the end of the column2a and column2b sections (or any number of columns), insert <div class="clear"></div> That stops a subsequent float from floating up where you don't want it, is easy to remember, and does not affect established line/paragraph spacing. Pat A.