Reputation Activity
-
annemarie got a reaction from DigitalSquid in Love you guys and girls ! ! !Just feeling happy today and want to share with you all that I really appreciate all the hard work and time that some people here give just to help others!
You're great! That's to be said!
-
annemarie got a reaction from Renaissance-Design in Love you guys and girls ! ! !Just feeling happy today and want to share with you all that I really appreciate all the hard work and time that some people here give just to help others!
You're great! That's to be said!
-
annemarie got a reaction from mantis in What should I fix first?do you like this? maybe bit to dark.. let me know
-
annemarie reacted to andy9l in Contact form is not sending me email -
annemarie reacted to andy9l in Contact form is not sending me emailTry this for process.php, change the EMAIL_TO and EMAIL_FROM values. Fixed several small bugs/typos. Email works, tested on my server.
<?php if( !empty($_POST) ){ define('EMAIL_TO', 'A Name <receive_email@address.com>'); define('EMAIL_FROM', 'A Name <email_from@address.com>'); //form validation vars $formok = true; $errors = array(); //sumbission data $ipaddress = $_SERVER['REMOTE_ADDR']; $date = date('d/m/Y'); $time = date('H:i:s'); //form data $naam = $_POST['naam']; $email = $_POST['email']; $telefoon = $_POST['telefoon']; $bericht = $_POST['bericht']; //validate form data //validate name is not empty if(empty($naam)){ $formok = false; $errors[] = "U heeft geen naam ingevuld"; } //validate email address is not empty if(empty($email)){ $formok = false; $errors[] = "U heeft geen email adres ingevuld"; //validate email address is valid }elseif(!filter_var($email, FILTER_VALIDATE_EMAIL)){ $formok = false; $errors[] = "U heeft geen geldig email adres ingevuld"; } //validate message is not empty if(empty($bericht)){ $formok = false; $errors[] = "U heeft geen bericht ingevuld"; } //validate message is greater than 20 charcters elseif(strlen($bericht) < 20){ $formok = false; $errors[] = "Uw bericht moet uit minimaal 20 karakters bestaan"; } //send email if all is ok if($formok){ $headers = "From: " . EMAIL_FROM . "\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $emailbody = "<p>U heeft een nieuw bericht ontvangen via de website.</p> <p><strong>Naam: </strong> {$naam} </p> <p><strong>Email adres: </strong> {$email} </p> <p><strong>Telefoon: </strong> {$telefoon} </p> <p><strong>Bericht: </strong> {$bericht} </p> <p>Dit bericht was afkomstig van het IP Adres: {$ipaddress} op {$date} om {$time}</p>"; mail(EMAIL_TO, "Nieuw bericht", $emailbody, $headers); } //what we need to return back to our form $returndata = array( 'posted_form_data' => array( 'naam' => $naam, 'email' => $email, 'telefoon' => $telefoon, 'bericht' => $bericht ), 'form_ok' => $formok, 'errors' => $errors ); //if this is not an ajax request if(empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest'){ //set session variables session_start(); $_SESSION['cf_returndata'] = $returndata; //redirect back to form header('location: ' . $_SERVER['HTTP_REFERER']); } }
-
annemarie reacted to Renaissance-Design in How am I doing so far?The button is still much too subtle, when it should be the most obtrusive thing on the page.
Try this trick: apply an 8px Gaussian blur to the whole page (or take a step back and let your eyes go out of focus) - the call to action should be the most noticeable patch of colour, but it's almost disappearing into the background - the focus is being stolen by the photo on the left. Try making it bigger and picking up on the red you've used as an accent colour through the rest of the page - it needs to compete with the bright green in the photo (and if that's going to be a slider your button'll have to compete with movement too, so make it really bold and obtrusive).
-
annemarie got a reaction from sarah3585 in Portfolio site redesignI also like it!
On samsung galexy 2s portait it looks great but in landscape mode it goes crazy, try this: opera mobile emulator
-
annemarie got a reaction from sunnyp81 in Feedback on this site pleaseMaybe you could use some css transition for the menu hover state so it looks a bit smoother.
-
annemarie got a reaction from D.Schuster in How am I doing so far?you're right, will do that
I'm sorry but I'm not sure what you mean?
The site is for a company that make furniture and kitchens. The headline says something like; for all your custom made furniture and kitchens, with below; would you like to request a price offer?. Do you think it's not clear enough?
>evu
I'll try that!
>D.schuster
I changed it back to gray
Thanx for your input
-
annemarie got a reaction from D.Schuster in How am I doing so far?This is a new project I'm working on.
It has to be fine tuned like aligning, content and details but I was just curious what you guys think of the design so far.
This draft is for the large desktops. My goal is to make it fluid to portrait tablet size and use media queries for mobile...
-
annemarie got a reaction from Renaissance-Design in How am I doing so far?This is a new project I'm working on.
It has to be fine tuned like aligning, content and details but I was just curious what you guys think of the design so far.
This draft is for the large desktops. My goal is to make it fluid to portrait tablet size and use media queries for mobile...