• Hello Scott, hope you doing well. Thanks in advance for your help, and for this plugin. I was wondering hot to tweak the follow me button. I used the following code in functions.php

    add_filter( ‘wpiw_linka_class’, ‘my_instagram_class’ );

    function my_instagram_class( $classes ) {
    $classes = “instagram-image”;
    return $classes;
    }
    ———

    but when i add this style to .my_instagram_class the button goes up instead of showin below the pictures.

    .instagram-image{
    display: block;
    color: #fff!important;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    line-height: 40px;
    height: 40px;
    text-decoration: none;
    font-family: arial;
    margin-top: -30px;
    background-color: #3897f0;
    }

    ———

    Is the same style (only changing the color code) i use for the YouTube button i have under the video thumbnail on the same sidebar, and there it works fine. Any help on this? By the way, i’m tryng to get a look similar to the official Instagram “Follow” button. Thanks!

    The page I need help with: [log in to see the link]

  • The topic ‘Follow me link/button custom class’ is closed to new replies.