Re: Change Menu Bar
And the reason why the styles I gave you are not showing up is because in the block before that, there is no closing bracket after the style declarations of `div.post div.post-content, div.comment-content` whew.
So change this
`div.post div.post-content, div.comment-content {
margin-left: 0px;`
to
`div.post div.post-content, div.comment-content {
margin-left: 0px;
}`
and it’s good to go.