UI.X

UI.X 1.5.22.0

No permission to download
Yes check the UI.X Sidebar style properties, there should be a style property to show that block on the sidebar.
Thank you Mike. (y)

I don't have UI.X yet, I'm thinking about buying it. ;)
Do you have some kind of trial or demo where I can have a look at the admin options and not just at the frontend)?
 
Thank you Mike. (y)

I don't have UI.X yet, I'm thiking about buying it. ;)
Do you have some kind of trial or demo where I can have a look at the admin options and not just at the frontend)?
Thank you for your interest!

At this time, we do not have this, as it would be fairly difficult to allow. We hope for 2.0 to have a system where people can actually go in and edit and build the theme before they buy it. But we do not have this feature yet. Until then I hope the screenshots, front end demo, and reviews help spark your interest! :)
 
just looked closer at the other post. @media (min-width: 1025px) is not going to render below 1025px... why not just change the min-width to something like 480px?
 
Last edited:
just looked closer at the other post. @media (min-width: 1025px) is not going to render below 1025px... why not just change the min-width to something like 480px?
Tried that m8. Doesn't work. The @media (min-width: 480px) is added, but the @media (min-width: 1025px) supersedes (is that the right word?) this. I have no clue where or why UI.X is generating @media (min-width: 1025px) for all my extra.css

Screen Shot 2015-12-21 at 23.35.36.webp
 
It looks like the sticky sidebar is aligning the top of the border around the button. You could reduce that spacing if you wanted the actual button to line up.

For the second issue, do you have a link we could look at?

I cant send a link as the issue is when you are creating an event, the average user wont see this, admins are the only that can create an event at this time.
cap.gif


@Bob anything you can think of that is fancy about this input? @stilly would you mind checking if any template modifications aren't running?

All template modifications are running.
 
Tried that m8. Doesn't work. The @media (min-width: 480px) is added, but the @media (min-width: 1025px) supersedes (is that the right word?) this. I have no clue where or why UI.X is generating @media (min-width: 1025px) for all my extra.css

View attachment 124450

Weird. If your CSS in the extra.css file?

Any results if you search templates for '1025px' ?
 
@Mike Creuzer

On one of my sites, the forums node list looks like this (antiquark)

upload_2015-12-21_19-41-47.webp


I would like to achieve the same type of look in UI.X. I looked at my extra.css in antiquark and tried copying a bit of code to UI.X but couldn't get it.

Any suggestions:

upload_2015-12-21_19-43-39.webp
 
Weird. If your CSS in the extra.css file?

Any results if you search templates for '1025px' ?
Yes everything is in the extra.css
No I cannot find anything with '1025px'
@Mike Creuzer do you know what to do?
All the stuff I put into extra.css is wrapped with @media (min-width: 1025px). So for example my custom prefixes don't work on tablets or mobiles. How can I prevent this? Where is this coming from?
 
What if you wrap your extra.css statements with !important?

@media (min-width: 48opx)
{
yourcss; !important
yourcss; !important
yourcss; !important
}
 
Using !important for every modification you made in general is a very bad advise. It will influence behavior of objects like buttons and links and will make UIX functionality be broken real quick. That is not good coding (and extremely rarely needed with XF CSS hierarchy if done right).

EDIT/EDIT: Found the "bug", a typo in the CSS.
@Axel B

Your page code revealed that your CSS has a typo...

Code:
@media (min-width: 1025px) {
    body,
    .nodeList .categoryStrip,
    .sidebar .section .secondaryContent h3,
    .sidebar .section .secondaryContent h3 a,
    .mainContent .section .widget.XMWidgets_Tag.non-sidebar-widget h3,
    .mainContent .section .widget.XMWidgets_Tag.non-sidebar-widget h3
    a {
        background: url('http://mainecoon.nl/images/xmas/christmas_wallpaper.jpg') no-repeat center center fixed !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important
    }

After that ALL of the other CSS code is following. But one important thing is missing. The Curly Bracket to CLOSE the @media properties. Setting a "}" after the above code and before the code that is following will resolve your problem completely.
 
Last edited:
How can I force wrapping the buttons Edit, Delete, IP, Warn and Report into the button Tools an all resolutions?
Is this something that can be done by using CSS? I couldn't figure out how this works.
Or is it a UI.X setting that I've missed?

Thanks in advance!

Screen Shot 2015-12-23 at 18.39.47.webp
Screen Shot 2015-12-23 at 18.41.48.webp
 
Top Bottom