• So I got wordpress to sort my posts by day (if multiple posts are on same day, they fall under one date heading.

    but now I want to move that to the left side of the post.

    so like this:

    date  |  post
    
          | another post on same day
    
    date  | post

    to see what it is like now: http://joeyfoxenberger.com/blog

    (I have been trying to somewhat duplicate the tumblr theme ‘Letterhead’ – http://letterhead.tumblr.com/ )

    Once I figure out how to get the date over there, I am guessing it will be easy to get the permalink over there too.

    Any ideas?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to wrap the date in a div and float it left and then wrap the title and content of the post in a div and then float that right. Remember that you will need to clear both before moving on to the next part of your theme.

    Thread Starter jfox95

    (@jfox95)

    code for the date: http://codex.wordpress.org/User:MCincubus/group_by_day

    it has it in a div “day”. so I put

    #day {
    float: left;
    }

    and the post is in a div “post”
    so I do

    #post {
    float: right;
    }

    ?
    I have tried that and it is like that right now and it doesn’t move anything.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘move date’ is closed to new replies.