Witam !
Jak zmienić kolor ramki na inny??
Proszę ss :
http://scr.hu/8gv/9smlo
A tutaj kod :
<div style="padding:10px; width:500px;margin-right:auto;margin-left:auto;">
<form id="pn-form" action="{$action}" method="POST">
<fieldset style="border: 1px solid;">
<legend style="display:inline;">{$this->lang->words['pn_note_post']} {$post}</legend>
<br />
<div style="padding:10px; width:90%;">
<input type="hidden" name="pid" value="{$pid}">
<label for="t1" onClick="$('note').className='pnmessage error';"><input type="radio" id="t1" name="type" value="1">{$this->lang->words['pn_warn']}</label>
<label for="t2" onClick="$('note').className='pnmessage';"><input type="radio" id="t2" name="type" value="2">{$this->lang->words['pn_info']}</label>
<label for="t3" onClick="$('note').className='pnmessage unspecific';"><input type="radio" id="t3" name="type" value="3" checked>{$this->lang->words['pn_general']}</label>
<label for="c1" style="float:right;"><input type="checkbox" id="c1" name="bbcode" value="1">BBCode</label>
<div id="note" class="pnmessage unspecific" style="text-align:center;width:95%;">
<textarea name="note" cols="40" rows="6" style="background-color: 454545; transparent; border: 0pt none; width: 100%;">{$this->lang->words['pn_note']}</textarea>
</div>
<input type="submit" class="input_submit right" value="{$this->lang->words['pn_submit']}" id="submit"><br />
</div>
</fieldset>
</div>
</form>
<if test="$ajax">
<script type="text/javascript">
var pnform = $('pn-form');
Event.stopObserving(pnform);
pnform.observe('submit', ipb.notes.formSubmit);
</script>
</if>