Try:
<input type='text' id='website' name='website' tabindex='1003' />
You’ll then need to update the smcf_data.php file. Below:
$message = isset($_REQUEST['message']) ? $_REQUEST['message'] : '';
Add:
$website = isset($_REQUEST['website ']) ? $_REQUEST['website '] : '';
Change the sendEmail call to:
sendEmail($name, $email, $message, $website);
Change the sendEmail function to look like:
function sendEmail($name, $email, $message, $website) {
Then, below:
$body .= "Message: $message";
Add:
$body .= "Website: " . filter($website) . "\n\n";
In smcf.css, below:
#contactModalContainer input#email,
Add:
#contactModalContainer input#website,
And adjust the height in:
#contactModalContainer .content {background-color:#333; color:#ddd; height:260px;}
To 280px or whatever fits your needs.
Lastly, in smcf_javascript.php, change:
jQuery('#contactModalContainer #name, #contactModalContainer #email, #contactModalContainer #message').css({
To:
jQuery('#contactModalContainer #name, #contactModalContainer #email, #contactModalContainer #message, #contactModalContainer #website').css({
That should do it ?? If not, let me know.