UI.X 2

UI.X 2 [Paid] 2.3.7.0.0

No permission to buy ($59.50)
When you are updating your UIX style itself, you'll want to overwrite your core UIX style with the style-uix.xml file. If you're using the variations version of the style, you'll use the style-uix_variations.xml version instead (in the child_xmls folder)


First thing I'd try is re-importing the XML for the variations version to see if that fixes it (sounds weird, but it has worked for me before). If that doesn't, then create a ticket here and we'll see what we can figure out.
I'll put a ticket in with a admin login for you.
 
@willl Is there another option to update it than doing it myself?
If you've installed the style via Install & Upgrade or the UIX addon you can try those. Is there something preventing you from using the XML, though? If so, you may not be able to use the other options either, as the XML option is the most reliable method.

This is where I start to get confused. Do I do that here? What do I have so many entries?

View attachment 326184

I downloaded the theme and there does not appear to be a XML???

Or here?
View attachment 326185
When you download the theme, it's contained inside a zip; you'll have to extract that zip, and inside there will be the files needed.

You can also try to use the "Force reinstall" option in what you screenshotted first.

You have multiple entries most likely because you purchased multiple copies of the style.
 
@willl - I'm trying to raise a support ticket on your website but that functionality appears to be broken? Your theme is causing emails to be sent with very large font, please can you advise how to fix this?

Screenshot 2025-09-14 at 21.09.08.webp
 
@willl - I'm trying to raise a support ticket on your website but that functionality appears to be broken? Your theme is causing emails to be sent with very large font, please can you advise how to fix this?

View attachment 327084

Not an uncommon issue sometimes - Thankfully it's an easy fix :)

Go to Appearance -> Templates, and switch over to the e-mail tab.

Open up the "core.less" template.

You should see the following right at the top:

Less:
// NOTE: THIS DOES NOT HAVE ACCESS TO public:setup.less automatically!
// THE LESS HERE SHOULD BE KEPT AS SIMPLE AS POSSIBLE

// UI.X Font Sizes

/* solution for pxs */
@fontSizeNormal: unit((10 * @xf-fontSizeNormal), px);
@fontSizeLarge: unit((10 * @xf-fontSizeLarge), px);
@fontSizeLarger: unit((10 * @xf-fontSizeLarger), px);
@fontSizeLargest: unit((10 * @xf-fontSizeLargest), px);
@fontSizeSmall: unit((10 * @xf-fontSizeSmall), px);


/* solution for rems
@fontSizeNormal: (0.625 * @xf-fontSizeNormal);
@fontSizeLarge: (0.625 * @xf-fontSizeLarge);
@fontSizeLarger: (0.625 * @xf-fontSizeLarger);
@fontSizeLargest: (0.625 * @xf-fontSizeLargest);
@fontSizeSmall: (0.625 * @xf-fontSizeSmall);*/

All you'll need to do is replace that with this:

Less:
// NOTE: THIS DOES NOT HAVE ACCESS TO public:setup.less automatically!
// THE LESS HERE SHOULD BE KEPT AS SIMPLE AS POSSIBLE

// UI.X Font Sizes

/* solution for pxs
@fontSizeNormal: unit((10 * @xf-fontSizeNormal), px);
@fontSizeLarge: unit((10 * @xf-fontSizeLarge), px);
@fontSizeLarger: unit((10 * @xf-fontSizeLarger), px);
@fontSizeLargest: unit((10 * @xf-fontSizeLargest), px);
@fontSizeSmall: unit((10 * @xf-fontSizeSmall), px);*/


/* solution for rems */
@fontSizeNormal: (0.625 * @xf-fontSizeNormal);
@fontSizeLarge: (0.625 * @xf-fontSizeLarge);
@fontSizeLarger: (0.625 * @xf-fontSizeLarger);
@fontSizeLargest: (0.625 * @xf-fontSizeLargest);
@fontSizeSmall: (0.625 * @xf-fontSizeSmall);
 
By remove - do you mean you don't want a logo at all on the forums, or do you mean you just want to change them?

Either way, this can be done under Appearance -> Style Properties -> Basic Options first; you'll either change or remove the Logo URL and the 2x Logo URL (you can just remove the 2x logo URL either way if you like, and just use the regular logo URL).

And if you want to remove the logo area entirely INCLUDING the logo, you'll also delete the contents of " Logo text" and "Logo icon".

Finally, you'll go to Appearance -> Style Properties -> Header and navigation and set "Minimum viewport width to show logo block" to something like 100000px. You'll do this change whether you want to outright remove the logo, or just make the logo sit in the nav bar instead of it's own logo bar.

I will note that this will cause a little extra space in the nav row on the left (if you're outright removing the logo entirely), because it's reserving the area for the logo image on the nav bar now; To fix that, just add the following to extra.less:

Less:
.p-nav-inner .p-header-logo { display: none !important }
 
By remove - do you mean you don't want a logo at all on the forums, or do you mean you just want to change them?

Either way, this can be done under Appearance -> Style Properties -> Basic Options first; you'll either change or remove the Logo URL and the 2x Logo URL (you can just remove the 2x logo URL either way if you like, and just use the regular logo URL).

And if you want to remove the logo area entirely INCLUDING the logo, you'll also delete the contents of " Logo text" and "Logo icon".

Finally, you'll go to Appearance -> Style Properties -> Header and navigation and set "Minimum viewport width to show logo block" to something like 100000px. You'll do this change whether you want to outright remove the logo, or just make the logo sit in the nav bar instead of it's own logo bar.

I will note that this will cause a little extra space in the nav row on the left (if you're outright removing the logo entirely), because it's reserving the area for the logo image on the nav bar now; To fix that, just add the following to extra.less:

Less:
.p-nav-inner .p-header-logo { display: none !important }
wow thanks it looks amazing now!!!!

Game Show Thank You GIF by Kinda Funny
 
That's actually the Accent 3 color under Appearance -> Style Properties -> Color palette, it looks like. You can change that value (it's used all over the site, FYI - not just in the nav, so if you don't want that color anywhere and want any place where that color is used to use a different color, that's where you'd change it) OR you can change the nav tab color itself under Appearance -> Style Properties -> Header and Navigation, expanding the "Navigation row - selected tab" section and changing that color there.
 
Is there a problem with the website? Install & Upgrade is unable to download files to upgrade the UI.X add-on and I get an error when I try to log in on the website. I was able to log in just fine and download the latest version of this theme a couple days ago.
 
does anyone know how to remove the "start a new thread" box at the top of the text box?

View attachment 330198


In your Extra.less template

Code:
[data-container-key="node-xxx"] .structItem[data-xf-init^="quick-thread"]
}
display: none;
}

Replace the xxx with the node ID.
I think you still have to to make one entry for each forum you want to disable it from.
 
Is there a problem with the website? Install & Upgrade is unable to download files to upgrade the UI.X add-on and I get an error when I try to log in on the website. I was able to log in just fine and download the latest version of this theme a couple days ago.
Sometimes the server has hiccups; It appears to be working fine now, though. Can you confirm?

In your Extra.less template

Code:
[data-container-key="node-xxx"] .structItem[data-xf-init^="quick-thread"]
}
display: none;
}

Replace the xxx with the node ID.
I think you still have to to make one entry for each forum you want to disable it from.
This is an option, however if you want to hide it globally you don't need to have the node ID; you can instead target the following:

Less:
body[data-template="forum_view"] .structItem.structItem--quickCreate {
    display: none;
}
 
  • Like
Reactions: ENF
Any idea why when I go to my ACP and attempt to upgrade my Themehouse styles I get the following error?

Screenshot 2025-11-14 at 6.50.16 AM.webp

I'm running UI.X 2.3.0 Patch Level 1. I've tried uninstalling and rebuilding it with no luck.

What am I missing? I've never had a problem upgrading before in the past.
 
Back
Top Bottom