Before: Header is not clickable |
After: Header is clickable, acts as Home button |
Go to Dashboard --> Template --> Customize --> Advanced --> Add CSS --> paste the following code --> Press enter after the last character of the last line } --> Apply to Blog.
.header-bar span.title a h1, .ss, #header .title a:hover{
display: block !important;
width: 100% !important;
height: 100% !important;
}
Extras:
1) Some of you might want to hide your blog's title from showing, especially if it obstructs your header image. I've prepared a slightly tweaked version of the code in case if you want your blog title to remain hidden.
2) If you have description visible, add the following additional code to your Template Designer. Note: This is a supplementary code, not a substitute. You're still gonna need the main code for this to work. Once you've added this code, adjust Lines 3 and 4 accordingly to adjust the position of your description.
1) Some of you might want to hide your blog's title from showing, especially if it obstructs your header image. I've prepared a slightly tweaked version of the code in case if you want your blog title to remain hidden.
.header-bar span.title a h1, .ss, #header .title a:hover{
display: block !important;
width: 100% !important;
height: 100% !important;
text-decoration: none !important;
color: transparent !important;
text-shadow: 0px 0px 0px transparent !important;
}
2) If you have description visible, add the following additional code to your Template Designer. Note: This is a supplementary code, not a substitute. You're still gonna need the main code for this to work. Once you've added this code, adjust Lines 3 and 4 accordingly to adjust the position of your description.
#header .header-bar .title h3{
position: fixed;
top: 5px;
left: 190px;
z-index: -1;
}