Change the position of post area in Blogger Dynamic Views

Blogger Dynamic views is completely different than a custom Blog. It's named the Dynamic Views because it is Dynamic. The post area in Classic mode of Dynamic Views is in center by default, but if you want it to be on the right or left or just not in the center then you are at the right place. 

We can use the 'float' property of CSS to achieve it and it's very simple to make any other changes to the template. The post area in Dynamic views is in center, as you can see in the picture. 
Before

After

You can see in the picture that the post area is now aligned to left instead of center. You can also do it with the help of small CSS that can be applied on Dynamic Views template with ease.


ol.items
{float:left;}

This small CSS will do it. You may change the 'left' in value to 'right', if you want it to be on the right side.Easy isn't it ?

To know how to add css, check this tutorial.