• Resolved michel_fridnge

    (@fridnge2017)


    Hi All,

    It’s possible to add “Share!” or “Follow us!” above an Horizontal Bar of Social Links but can we do it above a vertical bar?

    Best,
    Michel

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author micropat

    (@micropat)

    Hi Michel,

    Yes, you can add some custom CSS code to your “Additional CSS” box in Settings > AddToAny:

    .a2a_floating_style.a2a_vertical_style::before {
      content: "Share!";
    }

    This will apply to the vertical floating bar.

    Thread Starter michel_fridnge

    (@fridnge2017)

    Cool! Nearly perfect!

    I would like to have more control on the text alignment (horizontal and vertical).

    “Share!” doesn’t seem to be centered on the vertical bar.

    It would be cool if I could control the space between “Share!” and the first icon too.

    Best,
    Michel

    Plugin Author micropat

    (@micropat)

    .a2a_floating_style.a2a_vertical_style::before {
      content: "Share!";
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .a2a_floating_style.a2a_default_style {
      display: flex;
      align-items: center;
      margin-right: 20px;
    }
    .a2a_floating_style.a2a_default_style::before {
      content: "Share!";
      margin-right: 20px;
    }

    You can adjust the 20px bottom margin to your liking.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘“Share!” at the Top of of vertical bar’ is closed to new replies.