Argh! Well, I went ahead and indented all my code elements by 40px. But now, why do I have line breaks between my <span> tags? All the italicized text should be right next to the respective code, not on a separate line.
If you take a look at my source code, you'll see that the spans have this code:
<span class="taginfo">(<em>deprecated</em>)</span></code>
That's pretty much the issue. Everything was fine until I indented the code. Just for reference, another user on stackoverflow helped me with the formatting using this CSS:
.substructure code{
display: block;
margin: 0 40px;
line-height: 18px;
font-size: 13px;
}
The .substructure is the ID for my code sections.