I have a wide screen, as many people do, and I was puzzled that most Blogger templates use a fixed width for the main body of the blog. Obviously some elements must be fixed width, ad sense, for example, but I wanted my posts to take up as much space as there is available.
So, I looked at the HTML for my template and changed the following section from "$(content.width)" to "80%" for both max-width and _width.
.content-outer, .content-fauxcolumn-outer, .region-inner {
min-width: $(content.width);
max-width: 80%;
_width: 80%;
}
No comments:
Post a Comment