• Resolved jordanbeckwagner

    (@jordanbeckwagner)


    Hey everyone! My site is beertimewithwagner.com πŸ™‚ I’m trying to change the date so it appears above the title of each post and I’d like my title to move all the way to the left (right now it looks a bit indented). Any advice on what I should add to my CSS and/or change to my CSS?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey there,

    You could do something like push the margin down on the .post-info and then set the width wider so that it’s not all cramped up:

    .post-info {
    margin-bottom: 35px;
    width: 100%;
    }

    Not sure if you wanted the background colour removed so I left it there.

    To remove the margin on the title:

    .post h1, .post h2{margin-left:0;}

    Take care.

    Thread Starter jordanbeckwagner

    (@jordanbeckwagner)

    Hey Timothy!

    This is exactly what I wanted πŸ™‚ Thank you so much! One last question, I don’t want the background color…how would I remove that? Thanks so much!

    Hey again,

    that’s great to hear! πŸ™‚

    For the background, just adjust the original CSS I gave for .post-info to this:

    .post-info {
    margin-bottom: 35px;
    width: 100%;
    background: none;
    }

    That should sort you out πŸ™‚

    Have a great day!

    Thread Starter jordanbeckwagner

    (@jordanbeckwagner)

    Thanks so much for everything πŸ™‚

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Date and Title’ is closed to new replies.