This code: <h2>paragraph title</h2> I would like the text to follow on the next line. Code (markup): Generates this result: paragraph title I would like the text to follow on the next line. This is what I want: paragraph title I would like the text to follow on the next line. Is there a relatively easy way to get the text to follow on the next line after the header?
I wasn't quite sure how to implement your suggestion (I needed the baby steps), but I managed to figure it out. Here is what I used: <style type="text/css"> h2 {text-align: left; font-size:14; margin:0; padding:0;} </style> . . . <h2>paragraph title</h2> I would like the text to follow on the next line. Wasted way too much trying to figure it out myself. Thank you bacanze for your help!