tmayo

Customer
I'm in the process of moving over from UI.X 2 where there's an option for clickable nodes.

I can't seem to find a similar option under the style properties for XenBase.

Is this possible?

I see that it's mentioned in an old thread but it's not clear which style this was for:

Many thanks!
 
Hello and welcome!

If I recall, we ran into issues after diving into it. This was one solution in a ticket for another client. It's a simple CSS work around:

Code:
.node
{
    position: relative;
    .node-title
    {
        z-index: 2;
    }
    .node-title a:before
    {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        content: "";
        display: block;
    }
    .node-meta a, .node-extra a, .node-subNodesFlat a
    {
        z-index: 3;
        position: relative;
    }
}
[data-template="forum_list"]
{
    .tooltip.tooltip--description { pointer-events: none; }
}

I believe it should still work.
 
Really sorry, I missed your reply. I believe that this works...

Code:
.structItem.structItem--thread
{
    position: relative;
    .structItem-title a
    {
        position: static;
        &::before
        {
            position: absolute;
            width: 100%;
            height: 100%;
            content: "";
            z-index: 1;
        }
    }
    a
    {
        position: relative;
        z-index: 2;
    }
}

Let me know if you find anything off with it.
 

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