Hi,
But I’d like it to look better and just have 1 image that covers both areas.. is this possible?
This is possible but we’ll have to change the Header Presets back to default so both the nav bar and the logo are wrapped within <header id="masthead">
.
Once they’re wrapped within the header tag, you can try playing around with the CSS to achieve the same layout:
Example:
.site-logo{
width: 100%;
display:block;
text-align: center;
margin: 5px 0px 15px 0;
}
header#masthead .inside-header{
flex-wrap: wrap;
}
header#masthead{
background-color: red; /* replace this with the green background-image */
}
A wise man once said:
"Have you cleared your cache?"