Hi,
I’m using this css to asign margin spacing within a 4 col portfolio grid:
.no_margin.av_one_fourth.first{
padding-left: 0px;
}
.no_margin.av_one_fourth {
width: 25%;
padding-left: 10px;
This works, but it also make the first image about 10 pixels deeper than the others. Adding 10px to the padding on the first part also (.no_margin.av_one_fourth.first) makes them all the same depth but shifts the whole grid off center by 10px. Any ideas on how to fix that?
Hi tonyiatridis!
Can you post the link to your page and point out the section where the issue occurs?
Regards,
Yigit
Sure thing, I had set the padding to 10px in both cases to remedy this temporarily, it’s back to the code I listed before noe, check out what I mean here:
The first picture in the grid seems deeper in Safari, Firefox and Chrome viewed on a mac anyway, I haven’t looked on a PC and at IE yet.
Hey!
Add this on Quick CSS to move the whole portfolio grid by 10px to the left:
.avia_sortable_active .isotope {
margin-left: -10px;
}
.no_margin.av_one_fourth.first {
padding-left: 10px;
}
Best regards,
Ismael
Awesome! You guys are the best! Works fine. :)