ShineCero

Customer
Hi all,

I was wondering how to achieved this? I want to add space between the nodes, as in, each node is contain in its own box. How can I achieved this? Here's what I have so far:

Evolve Canvas - Node Spacer.png
 
Solution
Hello, this inside the template "extra.less" should help:

Code:
.block--category .block-body.nodedual {
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    @media (max-width: @xf-responsiveWide)
    {
    grid-template-columns: 1fr;
    }
}
Hello, this inside the template "extra.less" should help:

Code:
.block--category .block-body.nodedual {
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    @media (max-width: @xf-responsiveWide)
    {
    grid-template-columns: 1fr;
    }
}
 
Solution

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back