I ment
TEXT Box
I've created a custom page for my forum, basically for Movie Reviews.
I have the text content on my forum, and was wondering how I can go about putting the following on the Custom page I made:
-Title & Text box (Max characters allowed is what is allowed in a post)
Basically, what would be on the page, along with the content is what you see when you make a new topic (ie the title, and text box).
And when they click 'submit' - it goes to the dedicated forum/Board I have set up, for the post/submission of the Review.
The way I created the Custom page was the easy way, my link comes out as:
http://thesocialrev.com/forum/misc.p...mplate=reviews
Here's the code I started with, so you know where I'm at:
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header
$navbar
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">%ARTICLE1_TITLE%</td>
</tr>
<tr>
<td class="alt1">
%ARTICLE1_CONTENT%
</td>
</tr>
</table>
$footer
</body>
</html>
I replaced %ARTICLE1_TITLE% / %ARTICLE1_CONTENT% with the title and content of my page, I have made no other changes.
(i know theres 2 ways to make a custom page, so I hope that will help show you how I did it, incase the way is different for each way)
Sorry if this is confusing