This is the complete design I’m going for:

And this is the code: http://jsfiddle.net/rlesko/f3R7r/4/
A couple of questions:
- Why doesn’t a code
margin-leftdo nothing when changed for the object#date? - Do you know of a code that I can use to center a
#separatorobject on a.post-bg(the white background)? I usedmargin-leftfor that in my CSS. - How can I align the
<h2>text’s right border to the<p>text’s right border but keep the<h2>text alignment to the right? - Why doesn’t a custom font code work for this fiddle?
lots of points are best put into separate questions, but anyway…
It does work! Margin is set to 550px to prove
You can use
margin: 0 auto;on the separator element to center it. See here.Use
text-align: justify;for your desired text alignment on both sides. See it here.I think it has to do with not being able to serve fonts cross-domain. But I am not 100% sure.