I want the content on my blog to cover complete page from left to right, but its centralized , how to correct it ?
Put it into a div HTML tag. And give CSS style for the div tag. Like: <div style="width: 100%;"> your content </div> Code (markup): Cheers,
open a div above the place your content starts, and make the Codes for the div like this #somename { width:100%; } Make sure the name of the div made and inserted into the html are same Thanks
This actually solves the problem, but this will never work as I think you are putting this to a inner container (div or table). You have to put this in the outer most container, in the <body> tag and also in all the containers inside it.