Tagged: Image Position, portfolio items
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
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
Its work, thank you :)