I want the logo display and no text. After removing Header Image from the setting what should i do in css?
Make sure the Header Text checkbox is checked to show, and use this code in child theme stylesheet.
/*_____ do logo _____*/
.site-header { padding-top: 20px; }
.site-description {
position: absolute;
clip: rect(1px 1px 1px 1px); /* IE7 */
clip: rect(1px, 1px, 1px, 1px);
}
.site-header .home-link {
min-height: 0;
}
.site-title {
text-indent: 120%;
white-space: nowrap;
overflow: hidden;
margin: 0 0 10px;
padding: 0;
width: 300px;
font-size: 50px;
background: url("https://dummyimage.com/300x50/ff0000/fff.png") no-repeat scroll 0 0 / cover transparent;
}
@media (max-width: 800px) {
.site-title { width: 210px; font-size: 35px; margin: 0 auto 10px; }
}
/*_____ end logo _____*/
Only change the image url to your logo.