function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jwdv22Jwdv22 

Chatter:Follow button without Follow text

Hello all,

 

I have added the Chatter follow button on a Account Standard controller page with extension in a customer page block, but I was wondering how to get just the button, not the word Follow after the plus button?

 

Has anyone encountered this? Thanks

BillFuginaBillFugina

I used the following CSS and it seemed to do the trick:

 

 

<style type="text/css">
    .chatterFollowUnfollow
    .linkText {
        display:none;
    }
</style>

pinkelkpinkelk

This doesn't work for me.  I also tried 

.zen-mediaBody { display:none; }

and still no luck.