• Hi,

    This is just a heads up, and a tip to others, that the div that opens to show the sharing buttons (class name is ‘service-buttons’) will either not open or will break the layout of the meta buttons on some sites because of the width of the div; the solution to this is the following css (configured for my site, so might need to be tweaked for yours);

    .activity-meta .service-buttons {
        max-width: 800px;
    }
    @media(min-width:767px) and (max-width: 1000px){
    .activity-meta .service-buttons {
        max-width: 400px;
    }
    }
    @media(max-width:767px){
    .activity-meta .service-buttons {
        max-width: 100px;
    }
    }
    

    This can probably be further refined to one piece of css using percentages or vw or some other width measurement. I think this has only occurred since today’s update so maybe the devs also need to look at this?

  • The topic ‘Width of sharing container’ is closed to new replies.