MyBB Community Forums

Full Version: post bit classic
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i make this Warning Level with like otehr please help me i use revolution Gaming.


I try to edit but only the Warning Level cant change Sad

[Image: q3W1Agk.png]
Anyone gonna help me put here?
What is otehr?
What you just wanna accomplish is not clear.
Just a note (as your question is not clear) if you want a HTML progress bar in postbit for warning level, then change the variable {$warning_level} in your 'postbit_warninglevel' template to:

<progress value={$post['warningpoints']} max="10"></progress>

Result:
[Image: Untitled_1.png]

You can further design the progress bar in various ways.

OR

If you wanna show the warning level value to extreme right like other values as per your posted snap then open 'postbit_warninglevel_formatted' template and replace the code with the following:

<span class="{$warning_class}" style="float:right">{$level}%</span>

Result:

[Image: Untitled_1.png]