June 9, 2021 at 1:00 pm
#89402
Theme Horse Support Team
Keymaster
Hi freeamericanenglish,
Actually the Header Background doesn’t have the redirect link option. As per your Website, there is no logo set so we can use a trick by using the logo option. First you need to set the same image that you have used on background on logo. (Appearance > Customize > Site Identity) and remove the background image that you are using right now. Lastly go to ‘Appearance > Customize > Additional CSS’ and paste the Custom CSS code.
.navbar-head {
position: relative;
}
.navbar-head .container,
.navbar-head .col-lg-4,
.navbar-head .site-branding {
position: static;
}
.custom-logo-link {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.custom-logo-link img {
height: 100% !important;
width: 100% !important;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
object-fit: cover;
}
Thanks