Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author A. Jones

    (@nomadcoder)

    Hello,

    No there isn’t but it’s fairly easy to modify the style sheet using custom css. This may be included with your theme or you may install a plugin like simple-custom-css .

    The margin is currently set to 10px on all sides, top, bottom, left, right. You can add this to your custom css to change it to 5px.

    .griditemleft {
    margin: 5px;
    }

    You can also change any margin like so:
    .griditemleft
    {
    margin: 0px 5px 0px 5px;
    }

    Which is exactly the same as this:
    .griditemleft
    {
    margin-left: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    }

    Lastly,

    You will need to add important to your custom style to ensure that you override the default style, like so:

    .griditemleft
    {
    margin: 5px!important;
    }

    Thread Starter DanStarr

    (@danstarr)

    Great thank you. I’ll give it a go.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘gap between thumbnails on grid’ is closed to new replies.