Social Icons not Working in Top Bar

Hi,

My social icons are not working in the top bar on desktop but in mobile they are fine.

I just updated the Wordpress 5.5. Was that the issue?

Hi @HotDiggityWeb,

Thanks for reaching out.

It seems the content section margin is set to 0 and which overlapping the social icons in the header.
image (5)

You can get rid of it by increasing the z-index attribute of the header section, to do that please add the small piece of CSS code into Theme Options > CSS

.masthead {
    z-index:999999999;
    position: relative;
}

You can learn more on z-index in this article.

Remember that the above code will work if copied as it is and don’t conflict with any existing code.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something in your site nor will we enhance it.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.