You need to install a CSS plugin like Jetpack or Custom CSS Manager, and then add this CSS rule:
.site-title .fa-h-square:before {
content: url(http://example.com/wp-content/uploads/2016/03/logo.jpg)
}
For the URL, use the address which points to your logo.
I was able to get my logo in the header.
I have header text only selected for the Header Theme options so it shows up as needed.
I am trying to remove the site title text from the header area.
I found an area in the header.php but when I set the header class to display: none the entire section goes away.
Is there specific custom css to remove the header title and still keep my header section.?
thanks
Use this rule:
.site-title a {
display: none;
}
thanks again – I have been trying so many different options.
I appreciate the help that you provide.