My header contact info has disappeared. It is only visible when logged in as an admin. Where did it go?
More importantly, how do i get it back?
My header contact info has disappeared. It is only visible when logged in as an admin. Where did it go?
More importantly, how do i get it back?
Hi,
Please accept my apologies for the delay in response. I really appreciate your patience.
Can you share a link to your website here, so I can do direct inspection to find out the problem?
Seems likely the new element on header overlays the contact area. If that the case, I can suggest you with CSS code solution. But, I need direct checking first.
Regards,
Kharis
aThemes Support
I sent the link via email. Any progress?
Here is the website address again:
Hi,
Please accept my apologies for the delay in response. I really appreciate your patience.
Try doing these steps:
(function($){
if( $('.header-contact').length ){
var contact = $('.header-contact').html();
var newContact = '<div class="header-contact">'+contact+'</div>';
$('#masthead').prepend(newContact);
}
})(jQuery);
#masthead .header-contact{
display: none;
}
@media only screen and (min-width:992px){
#masthead.float-header .header-contact{
display: block;
}
}
Regards,
Kharis
aThemes Support