Hi, I have tweaked an Essential grid to be diamond-shaped and I need these to line up without margins, like a honeycomb effect similar to this site: http://bluevisual.tv/
The first row of 3 works fine, but in the subsequent rows the vertical alignment doesn;t quite work they are overalapping. This is the code that has made the modifications work so far,…there is something else needed to fix the vertical overlapping… thx so much.
in Theme Options > Global CSS
.esg-overflowtrick {
overflow: visible;
padding-top: 400px;
}
.myportfolio-container .esg-overflowtrick li:nth-child(3n+1) .esg-entry-media-wrapper{
left:50% !important;
top:-100% !important;
}
.myportfolio-container .esg-overflowtrick li:nth-child(3n+2) .esg-entry-media-wrapper{
margin-left: 25%;
margin-top: -25%;
}
.myportfolio-container .esg-overflowtrick li:nth-child(3n+3) .esg-entry-media-wrapper{
top:-100% !important;
}