airington
Member
Posted 3 years ago #
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.
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.
airington
Member
Posted 3 years ago #
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.
airington
Member
Posted 3 years ago #
Sometimes it's just best to start all over. My content lines up correctly now.