MyBB Community Forums

Full Version: How to add margin or border to postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to add border for post bit

Original post bit:
[Image: iv34.png]


how to add like border (in red color, and 1 px like below):
[Image: 4vo.png]
Go to postbit templates, and after search and open postbit_classic template.

Inside of that template, search:

Quote:<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;">

And change:

Quote:class="{$altbg}"

for:

Quote:class="myownclass" (Where "myownclass" it's your specific new class)

Save, and go to Themes > Select your template > Global.css.

Open your Global.css in advance mode, and in the end of the file put:

Quote:.myownclass {
border-right: 1px solid #FF0000;
}

Sorry for my bad english, hope I've helped.
thanks mate Smile