[cXF] Grid Nodes

[cXF] Grid Nodes 1.1.7

No permission to download
Q: How to enable grid nodes?
A: check the Style properties > [cXF] Grid Nodes and enable add-on (first option)


Q: How can I add a background image to node?
A: You can do it manually for each node by adding this to your extra.less template:
Rich (BB code):
.node.node--idX.node--depth2.node--forum.node--read {
    background-image: url(your_image_url_path);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

The [B]X[/B] is your node ID.

You can play with background-size to fit your needs by changing the value to contain, auto or add some value in px or % to suit your needs.
Back
Top