• Hi I am trying to figure this out myself but maybe you guys can point me to the right path more quickly. I have this blog:

    https://www.wealthalchemist.com/Blog/

    right now I think there are too much white space on the left so the whole blog looks skewed to the right with the side bar.

    I really want to adjust the left margin so that the whole blog shift more to the left hand side.

    Can someone teach me how I can do that? Do I modify ccs file?

Viewing 1 replies (of 1 total)
  • In your CSS file, your div called “root” includes the code margin: 0 auto;. It looks like your right column sidebar is set up outside the root div, so that’s why it looks lopsided. You can manually set the left margin by changing the css file at #root to something like margin: 0 50px; and see if that helps. Margins are set clockwise, so that sets the top and bottom at 0 and the left and right at 50. If you want to set just the left margin at 50, you could do margin-left: 50px; or you could do margin: 0 0 0 50px; (clockwise, top right bottom left). Then tweak it so that it looks the way you want it to look.

Viewing 1 replies (of 1 total)
  • The topic ‘How to adjust left space margin on my blog?’ is closed to new replies.