Tagged: gaps grid cells, grid row
Hi, i’d like to increase gap between grid cells on a home page only.
I found this code in your documentation but need to know where I add the page id to the code?
/*—————————————-
// Grid cell gap
//————————————–*/
#top .flex_cell {
border-width: 24px!important;
border-right-width: 0px!important;
border-bottom-width: 0px!important;
border-style: solid!important;
border-color:#FFF!important;
}
#top .flex_cell:last-child {
border-right-width: 24px!important;
}
Can you please send an exmple of the same cod with a page ID added so I can copy that format?
Thanks so much,
Anne
Hey Anne,
Thank you for the inquiry.
For the home page, you can use this css code.
.home .flex_cell {
border-width: 24px !important;
border-right-width: 0 !important;
border-bottom-width: 0 !important;
border-style: solid !important;
border-color: #fff !important;
}
.home .flex_cell:last-child {
border-right-width: 24px !important;
}
Let us know the result.
Best regards,
Ismael
Hi Ismael,
that is just perfect! Thanks so much for your great support as always.
One other question – do you know how to get rid of the thin grey line at the bottom of the the Grid Row? I have it set to ‘no border’.
Thanks,
Anne
