XF 2.2 Notices

_Al

Member
Is it possible to amend the notices so that they don't push down the sidebar? I'd like the notice to sit above forum list on the homepage but leave the sidebar alone.
 
What I did with mine was, in the PAGE_CONTAINER template, take this:

Code:
<xf:if is="$notices.block">
    <xf:macro template="notice_macros" name="notice_list" arg-type="block" arg-notices="{$notices.block}" />
</xf:if>

<xf:if is="$notices.scrolling">
    <xf:macro template="notice_macros" name="notice_list" arg-type="scrolling" arg-notices="{$notices.scrolling}" />
</xf:if>

and move it to immediately below this:

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