Quote:
Originally Posted by T3MEDIA
Is there anyone out there that could make a mod or show me how to refuse some types of HTML? ie z-index. using that you could cover the whole vbulletin screen.
|
In the options (adminCP) for the webpage, there's a box where you may list the html tags that are allowed (anything else shouldn't work although I haven't tested this). However, allowing html is risky so you could try adding some more custom BBcode for your members to use instead.
Quote:
and I would love to force the webpage to be a certain size. I did a page and it was huge. You know there is going to be that idiot member.
Let me know if it is possable! Thanks.
|
In the file webgbset.php, the following two lines control the sizes of the guestbook and webpage
Code:
$wghtml['webpagewidth'] = '60%'; //Default 60%
$wghtml['gbwidth'] = '30%'; //Default 40%
I assume it should work if you wanted to use fixed values e.g. 500px instead of percentages. I don't think users can override these values.