XF 2.2 How to put information static box within all pages

aj87

Member
Is it possible to add a static information box that stays statically on each page where the widgets are?

we would like something like

100 Posts = Valued Member
1000+ Posts = Experienced Member

above is just an example kind of thing - not accurate lol
 
Is it possible to add a static information box that stays statically on each page where the widgets are?

we would like something like

100 Posts = Valued Member
1000+ Posts = Experienced Member

above is just an example kind of thing - not accurate lol
Is this what you want the notice to say?
 
Is this what you want the notice to say?
Something along the lines of:

Explanation of Titles
<50 = New Member
100 = Valued Member
500 = Experienced Member
1000+ = Senior Member

i realised i could add into a notice, but I want that notice to appear on the page where forum statistics widget is. And also on mobile version
 
ACP >> Appearance >> Widgets

Add Widget (top right corner)

Choose a widget definition = HTML >> Add Widget

add widget.webp

choose widget definition.webp

widget settings1.webp

widget settings2.webp

widget settings3.webp

The actual HTML (for copy paste) is this - there's a typo in the screenshot - missing the closing bracket on line 3:

HTML:
<p>
    <b>50 = New Member<br />
    100 = Valued Member<br />
    500 = Experienced Member<br />
    1000+ = Senior Member</b>
</p>

And here's what it looks like in the sidebar:

Sidebar legend.webp
 
Top Bottom