2 EASY Things I need help with :>

pokeglobe it is hard to say what is and isnt...depends on the security of your site and also what you have enabled......Inferno Shout I use on some forums and so far has been ok but most everything has a back door or exploite that the creator left in there.

Use search for bb code =)
 
That horizontal link code I cannot find :(
Does anyone know how to make it so I can post HTML and Regular users can't?
 
so you want <hr /> as bbcode correct?

ok lets go...

admincp >> Custom BB Codes >> Add New BB Code

Title: hr
BB Code Tag Name: hr
Replacement:
HTML:
 <hr />
Example:
Use {option}: No
Remove Tag If Empty: No
all other options: No

so now you just write
in your post and you get your horizontal rule.

-----------------------------------------------------------------

You can also add css attributes to style it more...
ie:
Replacement:
HTML:
<hr style="background:#F05; border:1px solid #F05;text-align:center;width:50%;"/>
That wound give you a a horizontal rule thats centered, pink, 1px in height 50% width your postbit/postbit_legacy template, the styling is endless if you know CSS...:)

or

you could give it a class
ie:
Replacement:

HTML:
<hr class="h-rule" />
and then add the CSS to your styles "Additional CSS box"
Code:
.h-rule
{
       background:#F05;
       border:1px solid #F05;
       text-align:center;
       width:50%;
}

Hope that helped...:)
 
Back
Top