How to change the title and color of the form box.
To just change the color use the following code.
Add this CSS code to your theme or a code plugin like “Scripts n Styles”.
[cc lang=’css’ ]
/*Changes Make and Offer/Get Info box color*/
#armadillo-detail .armadillo-request-form .armadillo-header {
background: RED;
}
[/cc]
If you would like to change the wording and color use the following code. Remember to adjust the text size based on the wording you would like to use.
Add this javascript code to your theme or a code plugin like “Scripts n Styles” place in the </body> section.
[cc lang=’javascript’ ]
/* Changes text in form header for Vehicle Detail page */
jQuery(‘.armadillo-request-form .armadillo-header’).text(‘PLEASE REPLACE THIS TEXT’);
jQuery(‘.armadillo-request-form .armadillo-header’).css({‘background-color’:’#9F0300′,’font-size’:’12px’});
[/cc]