UI.X 2 Dark

UI.X 2 Dark [Paid] 2025-03-05

No permission to buy ($59.50)
hi guys! is there anyone who can help me here? in front of my title it has this in chrome specifically. does anyone know how to get rid of it?
1726265095402.webp
 
hi guys! is there anyone who can help me here? in front of my title it has this in chrome specifically. does anyone know how to get rid of it?
View attachment 310853
I'd need to see it rendered on the site itself in order to troubleshoot that one.

@willl or @ThemeHouse
Why is the light and dark themes 2 separate themes instead of a Style Variation (default/alternate) version of the same theme?
Because XF still has some bugs with XF 2.3 and color functions we use on variations that cause some issues.

We do have a version of UIX built with variations in mind, but are holding off until the color function bugs are fixed. It has been reported and confirmed by the XF team, but hasn't been fixed yet.
 
We actually no longer fully support Material icons in XF 2.3.x, but left it in for folks who wanted to put in the extra work to use them (hence the note below the icon font selector in the style properties). XF's new FA implementation is much more performant overall.
Okay. Thanks for the response, @willl. Please tell me how to change the font awesome icon in the subnode (subforum). I can do it with forum icons but not with subforums.

For forums, I use this code. It works well.

CSS:
/*** Change default FA node icon **/
.node .node-icon i {
    &:before {
        .m-faContent(@fa-var-dot-circle, 1em);
    }
 
    svg {
        display: none;
    }
}
/*****/
 
Okay. Thank you, @willl, for the response. Please tell me how to change the awesome icon in the font subnode (subforum). I can do it with forum icons but not with subforums.

For forums, I use this code 7. It works well.

CSS:
/*** Change default FA node icon **/
.node .node-icon i {
    &:before {
        .m-faContent(@fa-var-dot-circle, 1em);
    }
  
    svg {
        display: none;
    }
}
/*****/

In the case of sub-nodes, you'll use something similar.


Less:
.subNodeMenu .subNodeLink i {
    &:before {
        .m-faContent(@fa-var-dot-circle, 1em);
    }
    
    svg {
        display: none;
    }
}
 
In the case of sub-nodes, you'll use something similar.


Less:
.subNodeMenu .subNodeLink i {
    &:before {
        .m-faContent(@fa-var-dot-circle, 1em);
    }
   
    svg {
        display: none;
    }
}
I have tried this, but it's not working. The icons are the same as the previous ones.
 
I have tried this, but it's not working. The icons are the same as the previous ones.

I'd need to see your implementation in order to further troubleshoot; you may have some unique aspect to your node list and icon setup beyond the default.
 
I'd need to see your implementation in order to further troubleshoot; you may have some unique aspect to your node list and icon setup beyond the default.
no, I use font-awesome icons & use the above-given code in extra less for forum icons.
 
no, I use font-awesome icons & use the above-given code in extra less for forum icons.
There's a lot more that could potentially be unique in your case; The node type, any addons that may affect the node list, certain style properties and more.
 
.subNodeMenu .subNodeLink i { &:before { .m-faContent(@fa-var-dot-circle, 1em); } svg { display: none; }

Have you tried this? In your case, you're using list method instead of the menu method for sub nodes.

Less:
.node-subNodeFlatList .subNodeLink i {
    &:before {
        .m-faContent(@fa-var-dot-circle, 1em);
    }
    
    svg {
        display: none;
    }
}
 
Have you tried this? In your case, you're using list method instead of the menu method for sub nodes.

Less:
.node-subNodeFlatList .subNodeLink i {
    &:before {
        .m-faContent(@fa-var-dot-circle, 1em);
    }
   
    svg {
        display: none;
    }
}

Thank you very much. it's working now. Have a great day:)
 
ThemeHouse updated UI.X 2 Dark with a new update entry:

Version 2.3.3.0.1 Released

Changelog:
Resolved a Javascript error that could prevent AJAX content (such as notifications) loading in limited cases
Fix for occasional issue with conversation reply box not loading properly
Handful of minor bugfixes

Note: This release cannot be used on XenForo 2.2, it is exclusively for XenForo 2.3 only.
Note: This update does not require a UI.X add-on update to function properly.

Read the rest of this update entry...
 
I have downloaded this, but it seems to not come with an xml file. How am I supposed to add this to my forum without an xml file?
 
I have downloaded this, but it seems to not come with an xml file. How am I supposed to add this to my forum without an xml file?
Could you confirm you downloaded the style, and not just the UI.X 2 Addon? You'll need both, of course, but this is the most common situation in this case.
 
Could you confirm you downloaded the style, and not just the UI.X 2 Addon? You'll need both, of course, but this is the most common situation in this case.
Hey, Will. I was sure I downloaded and tried both.

UI.X-Dark-2.3.3.0.1 is the first zip file I downloaded and tried.

I should add, I am new and using a cloud subscription.
 
Back
Top Bottom