html - How to add style or put a class in a php form_submit button -
i want button awesome don't know how apply styles or put class on button http://i.stack.imgur.com/efvzg.jpg
<?php echo form_submit('submit', 'submit');?>
i want put css properties button make http://i.stack.imgur.com/jmfli.jpg..
.btnback{ background: #3498db; border: solid 1px; border-color: #3498db; background-image: -webkit-linear-gradient(top, #3498db, #2980b9); background-image: -moz-linear-gradient(top, #3498db, #2980b9); background-image: -ms-linear-gradient(top, #3498db, #2980b9); background-image: -o-linear-gradient(top, #3498db, #2980b9); background-image: linear-gradient(to bottom, #3498db, #2980b9); -webkit-border-radius: 5; -moz-border-radius: 5; border-radius: 5px; color: #ffffff; font-size: 15px; padding: 5px; width: 100px; text-decoration: none; vertical-align: middle; }
please teach me how it.. thanks
if code igniter:
form_submit('submit', 'submit',"class='btnback'");
Comments
Post a Comment