• Resolved joshuabaer23

    (@joshuabaer23)


    Trying out your plugin here, with an Avada theme. I love the lightweight functionality of this plugin. Great work. Just what I wanted.

    Im hoping to get help from anyone if they are experiencing their images not aligning with the first. Im not a pro with css, so I imagine I missing something. Any tips are welcome.

    Widget is located in my footer on this temp dev site here: https://dev1.sojournbox.com/

    Here is the css I have added so far:

    .null-instagram-feed .instagram-pics {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .null-instagram-feed .instagram-pics li {
      float: left;
      width: 25%;
      margin: 0px;
      padding: 0;
    }
    .null-instagram-feed .instagram-pics li img {
      padding: 12px;
    }

    https://www.ads-software.com/plugins/wp-instagram-widget/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Scott (@scottsweb)

    (@scottsweb)

    There is some CSS in your existing theme that is interfering here. It looks like this:

    .footer-area .footer-widget-col:not(.widget_icl_lang_sel_widget) > ul > li:first-child > a {
    padding-top: 0;
    }

    Try adding the following to your CSS:

    .null-instagram-feed .instagram-pics li:first-child > a {
    padding-top: 12px !important;
    }

    which will counter the line above.

    Thread Starter joshuabaer23

    (@joshuabaer23)

    That did it for me. Thanks sir. Above and beyond really.

    Plugin Author Scott (@scottsweb)

    (@scottsweb)

    Closing this thread. Glad it worked!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘My Images Not Aligning With First Image’ is closed to new replies.