• Resolved airington

    (@airington)


    I’m trying to make the content (posts, etc) on my main page indent from the left margin. I would also like the same indent to appear on the comments page.
    I’ve tried everything I know and have researched for an answer. I’m still learning code, so I’m sure it’s simple, but I can’t figure it out.
    If you take a look at my blog, you’ll see why I need to have the content shift a bit to the right.
    http://www.peachtreebliss.com/blog
    Thank you for any and all help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    i would simply add this to your theme’s .css file:

    .entry{
               margin-left: 100px;
    }
    
    .comment{
               margin-left: 100px;
    }

    if .entry or .comment are already defined in your css simply add this line to them:

    margin-left: 100px;

    or this line:

    margin: 0 0 0 100px;

    you can ofcourse change the 100px into any value you like.
    i hope this solves your issue.

    Thread Starter airington

    (@airington)

    Thank you for your reply.
    I did try that and it didn’t work. I have temporally put the code directly in the main index file.
    I will try the above again.
    Right now I can’t even seem to login.

    Thread Starter airington

    (@airington)

    Sometimes it’s just best to start all over. My content lines up correctly now.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Main content’ is closed to new replies.