Thursday, 8 January 2009

Customize the Blogger Header

How to Customize the Blogger Header. One way is to remove the border, say if you have a big header image.

Go to 'dashboard' and select 'layout' and then 'edit html'.

Scroll down until you get to the "#header-wrapper" section:


Change

    #header-wrapper {
    width:890px;
    margin:0 auto 10px;
    border:1px solid $bordercolor;
    }
to
    #header-wrapper {
    width:890px;
    margin:0 auto 0px;
    border:0px solid $bordercolor;
and
    #header {
    margin: 5px;
    border: 1px solid $bordercolor;
    text-align: center;
    color:$pagetitlecolor;
to
    #header {
    margin: 0px;
    border: 0px solid $bordercolor;
    text-align: center;
    color:$pagetitlecolor;

1 comment: