Finding Width Of Your Blog Header Isn’t Difficult
Have you got a question from any of your reader? Are you really confused about finding the width of your blog’s header? Well, this is not so difficult and you can easily find so by signing into your Dashboard.
To get the width of the blog Header, after you sign in to your Dashboard go to the relevant blog section and click on LAYOUT. After clicking on the LAYOUT, click the EDIT TEMPLATE, which will open the template editor window. Search the entire template for the following block of code;
The above piece of code is from the blog’s template and tells about the width of the Header, which is 850 pixels in this case. Just as we have found the width of the blog Header, you can also get the width of your blog’s sidebars and main Column. For getting the width of the sidebars and main column, search for the following piece of codes in the same template;
#sidebar-wrapper {
width: 130px;
float: right;
word-wrap: break-word; /* fixes for long text breaking sidebar float in IE */
}
#main-wrapper {
width: 450px;
margin-left: 22px;
float: left;
word-wrap: break-word; /* fixes for long text breaking sidebar float in IE */
}
The first set of code tells about the width of the sidebars, which is 130 pixels in this case. The second block of code tells about the width of the main column, which is 450 pixels in this case. So, now if you get any question from your blog readers regarding the width of Header or main column and sidebars, you have got the answer ready.








