[XB] Xmas Garland

[XB] Xmas Garland 1.0.0

No permission to download
I installed it and it seems to work fine with the styles. The exception would be if you're using a custom setting like the logo in navigation (or Bolt's header version).

If you are using Bolt's custom header approach, you will need to manually apply the edit:

Open PAGE_CONTAINER

Find: (line 193 by default)

Code:
<div class="xb-page-wrapper--helper"><a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}" class="xb-page-wrapper--helperLink"></a></div>
Change to (you're just adding the template modification manually)

Code:
    <div class="xb-page-wrapper--helper">
        <xf:if is="property('pb_xmasgarland_enable')"><xf:include template="pb_xmasgarland_header" /></xf:if>
        <a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}" class="xb-page-wrapper--helperLink"></a></div>

And if you're decorations aren't aligned to the top, add this to extra.less:

Code:
.b-page_newyear .b-page__content {
    top: 0;
}
 
@Russ I am running Nova and it looks like this:
Screenshot 2025-12-07 125808.webp

blows the right side out. I also had to change this template modification from this: <div class="p-header-inner"> to <header class="p-header" for it to display where it does now.

Thanks,
Itworx4me
 
Looks great :-) I use Pixel Exit Xenbase and all is fine - I thought it might cover part of my logo which is large and central, but it doesn't - thanks for this :-)
 
Back
Top Bottom