Viewing 4 replies - 1 through 4 (of 4 total)
  • The AddToAny has its own CSS class that can be found in the plugin’s files.

    You may be able to add the following to the end of your theme’s style.css and get results you are looking for.

    .addtoany_share_save_container  {
      margin:-20px 0;
      position:relative;
      top:7px;
    }

    Adjust the value of the top and margin parameters to taste … depending on how and where the plugin is writing the call to its own spreadsheet will determine if the margin parameter will have any effect.

    Thread Starter Neil

    (@ademmeda)

    Thanks for the reply but either it didn’t work or I couldn’t manage to make it work.

    I managed it in Firefox using Firebug … it should be possible. Sometimes it can be difficult to get your “custom” CSS to have more specificity than the plugin’s CSS.

    Moderator James Huff

    (@macmanx)

    Try this:

    .addtoany_share_save_container  {
      margin: -20px 0 !important;
      position: relative !important;
      top: 7px !important;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Alignment of Buttons’ is closed to new replies.