BATV

Registered
When I enabled the following options...
Sticky
Left side
Forum style boxed
Widget: Thread view: Sidebar

The thread title and user is displayed above the sidebar.

1542810684979.png



Please let me know if you can fix this soon.
 
This isn't actually a bug, the title area if you inspect element even on the default XenForo style it goes across the entire width of the content:


Screenshot_3.png


Screenshot_4.png



You can change the positioning of this by editing page_container, find:

Code:
        <xf:if is="$headerHtml is not empty">
            <div class="p-body-header">
                {$headerHtml|raw}
            </div>
        <xf:elseif contentcheck="true" />
            <div class="p-body-header">
            <xf:contentcheck>
                <xf:if contentcheck="true">
                    <div class="p-title {{ $noH1 ? 'p-title--noH1' : '' }}">
                    <xf:contentcheck>
                        <xf:if is="!{{ property('xbForumListH1')}} OR $template != 'forum_list'">
                            <xf:if is="!$noH1">
                                <h1 class="p-title-value">{$h1}</h1>
                            </xf:if>
                        </xf:if>
                        <xf:if contentcheck="true">
                            <div class="p-title-pageAction"><xf:contentcheck><xf:pageaction /><xf:if is="$sidebar AND {{ property('xbSidebarCollapse') }}"><span id="collapseSidebar" class="button{{ !is_toggled('_sidebarCollapse') ? ' xb-sidebar-default' : '' }}" data-xf-click="toggle" data-active-class="xb-sidebar-default" data-xf-init="toggle-storage tooltip" title="{{ property('xbSidebarCollapsePhrase') }}" data-target=".p-body-main--withSidebar" data-storage-type="cookie" data-storage-key="_sidebarCollapse"><xf:fa icon="fa-caret-right" /></span></xf:if></xf:contentcheck></div>
                        </xf:if>                
                    </xf:contentcheck>
                    </div>
                </xf:if>

                <xf:if is="$description is not empty">
                    <div class="p-description">{$description}</div>
                </xf:if>
            </xf:contentcheck>
            </div>
        </xf:if>

And move it below:

Code:
<div class="p-body-content">

But it will shift the sidebar up on all pages, including forum list:

Screenshot_5.png
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back