UI.X

UI.X 1.5.22.0

No permission to download
Great update Mike but after the update sticky navigation does not work on IE11
It works when I test it on Chrome39 and Opera26
 
Also I noticed that the slider in @Brogan's CTA Featured Threads slider is not auto resizing when hiding/showing the sidebar.
And in IE11 the slider not even showing up when the sidebar is hidden.
 
Great update Mike but after the update sticky navigation does not work on IE11
It works when I test it on Chrome39 and Opera26

Looking into this now thank you!

Also I noticed that the slider in @Brogan's CTA Featured Threads slider is not auto resizing when hiding/showing the sidebar.
And in IE11 the slider not even showing up when the sidebar is hidden.

As for the slider not resizing, thats strange. We fire a resize event when you close the sidebar, so it should work quite well with bx slider.

Ill do some tests, thanks for spotting.
 
A few questions and things I noticed that I forgot to ask about, most of them were issues from quite a while ago:
1. Was removing all the xenforo gradient images one of the goals? If so, one place that is still using a XF gradient image is the thread prefix filter bar that is above thread listings. (This bar only shows when you click on a prefix to filter it.)
2. When you turn on the adstyler and no background image is selected it keeps requesting for the file "none" on every page (see browser console).
3. When using a text logo, how do I change the size with style properties? Changing the size in "Logo Text Style" tab doesn't seem to take effect. Also, what does "Navigation Logo Text Size" do?

Thanks!
 
If anybody is getting this for the Extra Index box, due to styling changes you have made:

upload_2014-12-14_2-6-33.webp

Add to your EXTRA.css
Code:
#audentio_postPaginationInput {
width: 124px;
}
Adjust width accordingly.

upload_2014-12-14_2-8-29.webp
 
Hey Mike thought I would ask here or anyone that can help. This is probably an option but I have not seen it so far.

Here you can see that the sub menu works fine:
1_zpsf9762d7e.jpg

And the Discussion looks like this:
2_zps982b1373.jpg

It isn't there I was wondering if I it could be added back to the sub menu in the Discussion list and threads.?
 
Hello,
I have upgraded to 1.4.3 but i'm having a problem with this css line: translate3d
".mainContainer .mainContent {transform: translate3d(0,0,0);}" in uix.css

By adding translate3d to .mainContent container , its breaking all fixed DIVs (using 'position: fixed') inside the .mainContent container because the transform creates a new local coordinate system.

For an example, this addon cant work properly, it was working fine with 1.4.2.
Notifications 1.7.6 - https://xenforo.com/community/resources/notifications.870/

I can fix that problem by removing translate3d but i'm afraid that could affect the theme functionality .
.mainContainer .mainContent {
transform: none;
}

Is there any way else to resolve this problem? Thanks.
 
For some reason, despite overwriting the files and overwriting the style, I couldn't get the style version number to upgrade to 1.4.3. So I'm doing it all over from scratch. Couple of things I noticed:

-New logo tag line text is weird looking. I don't know if its because the font is so different than the old versions or not.

-The Welcome Block modal box now shows on the left side instead of the right. Its a little weird looking as it interferes with reading the posts and pages.

-For Large size avatars the height issue is back where tall avatars will expand beyond the name title box:

uix avatar large.webp

I could have sworn there was a css fix for this but I can't find it for the life of me.
 
i seem to be having problems adjusting the Style Properties: "Forum / Node List" - "Node Title" and "Node Title - Unread" text Color to take effect. It seems to be inheriting the colors from Style Properties: "General" - "Link" and "Link, Hover State" Instead.
 
It would be cool to have the new pagination also available in the userbar. I moved it up there by editing templates, but having the option to have it up there instead of in the main nav would be cool.
 
Can you show us what that looks like and how you did it?

uix_userBar template,

Code:
<xen:require css="moderator_bar.css" />

<xen:if hascontent="true">
<div id="userBar" class="{xen:if @uix_stickyUserBar, 'stickyTop'}">

    <xen:if is="@uix_pageStyle!=1">
    <div class="pageWidth">
    </xen:if>
      
        <div class="pageContent">
      
            <div class="navTabs">
      
            <xen:if is="@uix_pageStyle==1">
            <div class="pageWidth">
            </xen:if>
      
                <xen:contentcheck>
      
                    <xen:if hascontent="true">
                    <ul class="left moderatorTabs">
                  
                        <xen:contentcheck>
                        <xen:hook name="uix_userbar_left_start" />
                      
                        <xen:if is="{$visitor.is_moderator} || {$visitor.is_admin}">
                            <xen:include template="moderator_bar" />
                        </xen:if>
                      
                        <xen:hook name="uix_userbar_left_end" />
                      
                        </xen:contentcheck>
      
                    </ul>
                    </xen:if>
                  
                    <xen:if is="@uix_postPagination">
                        <li class="navTab audentio_postPagination" id="audentio_postPagination"></li>
                    </xen:if>
                  
                    <xen:if hascontent="true">
                  
                        <ul class="visitorTabs right">
                      
                        <xen:contentcheck>
                      
                            <xen:hook name="uix_userbar_right_start" />
                          
                            <xen:if is="@uix_visitorTabsToUserBar">
                                <xen:include template="uix_visitorTabs" />
                            </xen:if>
                          
                            <xen:if is="@uix_loginHandleToUserBar && @uix_loginHandleAsNavLink">
                                <xen:include template="uix_loginTab" />
                            </xen:if>
                          
                            <xen:if is="@uix_searchPosition == 3">
                                <xen:include template="uix_searchTab" />
                            </xen:if>
                          
                            <xen:hook name="uix_userbar_right_end" />
                          
                        </xen:contentcheck>
                      
                        </ul>
                      
                    </xen:if>  
              
                </xen:contentcheck>
          
            </div>

            <span class="helper"></span>
        </div>
    </div>
</div>

</xen:if>

BT2ElUl.webp
 
Top Bottom