To disable the floating share bar(s) on just the main page, the current way is to add a line of custom CSS code (using a “custom CSS” plugin or feature of your theme):
body.home .a2a_floating_style { display: none; }
Thread Starter
TheTJ
(@measuringflower)
I tried adding it to my style.css is that the correct place? If so, it didn’t do anything. It still shows on the blog page: http://www.measuringflower.com/blog/ I don’t have a custom CSS plugin and have too many plugins as it is so don’t want to add any more.
Thanks. 🙂
Ah, your theme uses a blog class name instead of home. Here you go:
body.blog .a2a_floating_style { display: none; }
Editing the theme’s style.css is one common way — keep in mind that a theme update to your current child theme will overwrite that file and your changes.
Thread Starter
TheTJ
(@measuringflower)
That did it! Thank you! May I bug you about another question if you don’t mind? How do I make it so the floating one doesn’t appear until a person starts scrolling down?