PDA

View Full Version : Text Box to Bullet Box's


TheOGMonsta
11-03-2011, 05:11 PM
Hello, recently I have decided to let members change there username colour around the forums with the vB-Shop feature that allows this. Well while I have been doing so, I do not want to allow the usual text box because people can use any hashed username colours or use the colour "transparent" so they have no username! So I decided I wanted it to look like this:

http://puu.sh/833z.png

But now when I click the box and click save it does not save.

Here is the original text box code were you can type your own colour into it:

<td class="alt2"><input type="text" name="code[color]" class="bginput" size="35" /></td>

And here is the one I changed it to:

<td class="alt2"><form>
<input type="radio" name="code[color]" /> Red<br />
<input type="radio" name="code[color]" /> Blue<br />
<input type="radio" name="code[color]" value="green" /> Green<br />
</form></td>

Can someone please help me getting this working.

Thanks.

Also if someone is willing to come and do this for a small amount of money then I'm happy to pay.

nhawk
11-03-2011, 07:08 PM
Try this...

<td class="alt2">
<input type="radio" name="code[color]" value="red" /> Red<br />
<input type="radio" name="code[color]" value="blue" /> Blue<br />
<input type="radio" name="code[color]" value="green" /> Green<br />
</td>