datetime next to entries

Feb 20, 2013 17:57

I've created a layout where I had the datetime next to the entries. Now I want the same but then also with some entries next to eachother. And that gives me problems with the datetime. It now dissapears when I'm trying to get it next to the entries.
Live preview at incheons

Link to the codesSorry not in an textarea because the new editor keeps chrashing ( Read more... )

date, entries

Leave a comment

Comments 2

inspired_ideas February 21 2013, 21:38:08 UTC
It's the margin of your .date style.
It's set at -100px. If you want it flush on the left, change it to 0px.

You have:
/* date, subject, comments, currents */

.date{
width:130px;
margin-left: -100px;

Try this:

/* date, subject, comments, currents */

.date{
width:130px;
margin-left: 0px;

Reply

unreal February 21 2013, 22:10:47 UTC
That will make the date to be on the left but not NEXT to the entry on the left. And that's what I want.

Reply


Leave a comment

Up