Hi… Guys i need to add class in to Button ( to customize)
this is Normal HTML code
<input type="submit" class="input button primary red" value="Home">
I need add thiss class [class="input button primary red" } in to my Submit button
normally it work like this
<?php echo CHtml::submitButton((‘Home’),array(‘class’=>“input button primary red”)); ?>
But after add site URL in to button it dosent work (just Css class)
[color="#FF0000"]How Add it in to this Code[/color]
<?php echo CHtml::submitButton((‘Home’),array(‘submit’ => array(’/site/index’))); ?>
thank you…