Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #558742

    Hello,

    I have some problem :(

    1. I do space between portfolio items with this code. But on the first item I dont need margin-left. How can I select the first item?

    .grid-entry .inner-entry {
        margin-left: 3%;
        margin-bottom: 3%;
        margin-right: 0%;
    }

    2. How can I set top-center position for portfolio entry / feature image. Top of the image are missing.

    Best Regards
    Peter

    #558743

    Hi Peter!

    I don’t think what your trying to do is going to be easy but if you just want to remove the margin from the first one then you can use some CSS like this.

    .grid-sort-container > div:first-child article {
        margin-left: 0px !important;
    }

    Regards,
    Elliott

    #564826

    Its work, thank you :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Portfolio items grid element: margin, image position and pagination button’ is closed to new replies.