Howdy, you guys have been great with support so far. I searched and couldn’t find any open threads on this matter.
I want my logo to be a hanging logo - similar to the logo on DurrHC.com
Before I switched to X theme, WP gave me the below custom CSS, and it gave the result of: https://cld.wthms.co/KazCqr
Any way I can re-achieve this? Site info in secure note.
/* Site Logo: move it next to the menu on larger screens – 1570141-zen (EZ) /
@media screen and (min-width: 1260px) {
/ Add the new logo next to the header menu /
.menu-custom-main-menu-container:before {
content:"";
background: url(https://circleematerials.files.wordpress.com/2018/10/cropped-circle-e-logo_-0024.png?w=304) center left no-repeat;
background-size: contain;
position: absolute;
left: 0;
height: 133px;
width: 100px;
}
/ Move the menu to the left */
.menu-custom-main-menu-container {
padding-left: 100px;
}
/* Hide the original logo */
.site-logo {
display: none;
}
}

