Hello X Team,
Please see the attached image sample. That’s how I want my logo area to look with clickable email and phone buttons. Below is my global CSS and JavaScript. Can you tell what I need to correct to achieve the desired results?..
CSS
.x-navbar .desktop .x-nav > li:last-child > a {
border-right: none;
}
.x-navbar .desktop .x-nav > li > a {
border-right: 1px solid white;
}
.x-navbar .sub-menu a{
font-size:17px;
font-family: 'Signika'
}
.x-logobar {
background: url(/wp-content/uploads/2019/07/NavBackground4.jpg) no-repeat;
background-size: cover;
}
.masthead-stacked .x-brand {
float: left;
}
.header-contact {
position: absolute;
}
JavaScript
jQuery(document).ready(function($) {
var html = '<div class="header-contact"><a href="mailto:director@lakecitieschamber.com"><img src="/wp-content/uploads/2020/03/buttonEmail.png" alt="Email Us"</a> <a href="tel:940-497-3097"><img src="/wp-content/uploads/2020/03/buttonPhone.png" alt="Call Us"</a></div>;
$( html ).appendTo('.x-logobar-inner .x-container');
});
Here is what I have now…