How to adjust the title in the header of my blogspot blog?

113 Views Asked by At

I have one blog called https://toadynewselite.blogspot.com but there is some problem in space, in header there is unknown space that make blog ugly.

space above the title in header

I used custom template in blogspot. The title doesn't fit correctly in header. There is an empty space before the title in the header of the blog. Also the title is partially hidden in the menu.

2

There are 2 best solutions below

1
AudioBubble On

Add this to CSS

.header-header {
    height: auto;
}
.header-logo {
    max-width: none;
}
1
umusi On

go to .header-header and replace CSS code by:

.header-header{
    background-color: #99C9F9;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

and .header-logo replace CSS code by:

.header-logo{
    position: relative;
    float: left;
    width: auto;
    margin: 0;
    }