Removing tooltip from classic social share

When I hover over a social icon using the classic social share a tool tip displays. How can I remove this? I looked to do a display:none but cannot seem to find it to do that. Please advise.

Thank you.

Hi @kstidham,

Thanks for writing to us.

Please add this code in the theme option’s CSS to hide tooltips.

.tooltip.fade.bottom.in
{
   display:none;
}

The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.

Hope it helps you.
Thanks

I am pretty comfortable with css but did not see this in the code. I spent a while looking for it. Thanks. It worked great.

You are welcome @kstidham

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