@nickdella . You can do this by adding some inline CSS, or by assigning a class or id to the button, and have your CSS in the template. However, you have to edit the “tmpl/default.php” on line 32, you will see:
< br />
< input type ="submit" name ="submit" value =< ? php echo '"' . $ params -> get ( 'efu_button' ) . '"' ; ? > /> < br />
You can either edit it with inline CSS, as follows:
< br />
< input style ="YOUR STYLES HERE" type ="submit" name ="submit" value =< ? php echo '"' . $ params -> get ( 'efu_button' ) . '"' ; ? > /> < br />
Or with a predefined class,
< br />
< input class ="YOUR_CLASS" type ="submit" name ="submit" value =< ? php echo '"' . $ params -> get ( 'efu_button' ) . '"' ; ? > /> < br />
Or with a specific ID with css properties defined to it,
< br />
< input id ="YOUR_ID" type ="submit" name ="submit" value =< ? php echo '"' . $ params -> get ( 'efu_button' ) . '"' ; ? > /> < br />
Fo example, if you wanted to place inline color:
< br />
< input style ="background-color:#f334ee;" type ="submit" name ="submit" value =< ? php echo '"' . $ params -> get ( 'efu_button' ) . '"' ; ? > /> < br />
I personally prefer to define a class in my CSS file, usually the template CSS, and then specify the class on the button:
< br />
. MY_CLASS < br />
{ < br />
background -color : green ; < br />
} < br />
< br />
. MY_CLASS : hover < br />
{ < br />
background -color : red ; < br />
} < br />
Then specify,
< br />
< input class ="MY_CLASS" type ="submit" name ="submit" value =< ? php echo '"' . $ params -> get ( 'efu_button' ) . '"' ; ? > /> < br />
I hope this helps.