I’ve added a background image in the header and would like it to link to a new page. I’ve set the image up using CSS:
.header-wrap[class*=”page-header-naked”] #header-section #header {
background-color: rgba(123, 0, 0, 1);
border-bottom-color: transparent;
background-image: url(“https://bovardscholars.usc.edu/wp-content/uploads/2016/08/usc-logo.png”);
background-repeat: no-repeat;
background-position-x: right;
background-position-y: center;
background-position: 94% 50%;
}
Is there JS I can add to have the image link? Or is there a better way? Thank you!