If you're using the old Blogger interface: Go to Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
If you're using the new Blogger interface: Go to Dashboard ('House' symbol) - Template - Customize - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
Increasing the left-padding will bring your image towards the right. Increasing the top padding will pull your image down.
If you're using the new Blogger interface: Go to Dashboard ('House' symbol) - Template - Customize - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
#header {
padding-left: 170px;
padding-top: 0px;
}
Increasing the left-padding will bring your image towards the right. Increasing the top padding will pull your image down.
Align to Center
If you want to center your header image, use the code below instead (either one):
Note: If you're using a heavily moded third party template, you might want to change the Header ID in the code above before attempting this tutorial. Have fun.
If you want to center your header image, use the code below instead (either one):
#Header1_headerimg{OR
margin-left: auto;
margin-right: auto;
}
#header-inner{OR (For image-less header)
margin-left: auto;
margin-right: auto;
}
#header-inner{
text-align: center;
}
Note: If you're using a heavily moded third party template, you might want to change the Header ID in the code above before attempting this tutorial. Have fun.