Changes Removed template "xb_canvas" as it was no longer used (all Canvas HTML edits are inside PAGE_CONTAINER now) Fixes Boxed navigation wasn't stretching with alternate page width The search bar in sub-navigation now has some spacing on the right side Space added before our copyright so it's not touching the default XF copyright. Sticky sidebar had no spacing when sub-nav was floating as well Removed an unnecessary line at the end of "jquery.qtip.min.js" causing a server error in some cases Mod selected color wasn't working if the alternate background on discussion items was enabled For those with a customized PAGE_CONTAINERE, if merge does not work then you can apply the update manually by doing the following. Open PAGE_CONTAINER Find (click inside the editor and hit ctrl-f): Code: <xf:if is="$rootBreadcrumb AND $rootBreadcrumb.href != $xf.uri"> Replace with: Code: <xf:if is="$rootBreadcrumb AND $rootBreadcrumb.href != $xf.uri AND $rootBreadcrumb.href != $xf.fullUri"> Find: Code: <xf:if is="$selectedNavEntry && $selectedNavEntry.href && $selectedNavEntry.href != $xf.uri && $selectedNavEntry.href != $rootBreadcrumb.href"> Replace with: Code: <xf:if is="$selectedNavEntry AND $selectedNavEntry.href AND $selectedNavEntry.href != $xf.uri AND $selectedNavEntry.href != $xf.fullUri AND $selectedNavEntry.href != $rootBreadcrumb.href"> Find: Code: <xf:foreach loop="$breadcrumbs" value="$breadcrumb" if="$breadcrumb.href != $xf.uri"> Replace with: Code: <xf:foreach loop="$breadcrumbs" value="$breadcrumb" if="$breadcrumb.href != $xf.uri AND $breadcrumb.href != $xf.fullUri"> Then hit SAVE AND EXIT. These are the only changes assuming you're upgrading from our 2.1.8 version.
<xf:if is="$rootBreadcrumb AND $rootBreadcrumb.href != $xf.uri">
<xf:if is="$rootBreadcrumb AND $rootBreadcrumb.href != $xf.uri AND $rootBreadcrumb.href != $xf.fullUri">
<xf:if is="$selectedNavEntry && $selectedNavEntry.href && $selectedNavEntry.href != $xf.uri && $selectedNavEntry.href != $rootBreadcrumb.href">
<xf:if is="$selectedNavEntry AND $selectedNavEntry.href AND $selectedNavEntry.href != $xf.uri AND $selectedNavEntry.href != $xf.fullUri AND $selectedNavEntry.href != $rootBreadcrumb.href">
<xf:foreach loop="$breadcrumbs" value="$breadcrumb" if="$breadcrumb.href != $xf.uri">
<xf:foreach loop="$breadcrumbs" value="$breadcrumb" if="$breadcrumb.href != $xf.uri AND $breadcrumb.href != $xf.fullUri">
We've pushed out our 2.0.10 updates for all active customers. This is a rather large update which you can view the changes here: https://pixelexit.com/threads/2-0-10-style-updates.6683/ Additionally I've created a little showcase of some things that made it into the update: https://pixelexit.com/threads/2-0-10-new-items.6676/ You may download the update here: https://pixelexit.com/products/license Thank you everyone!