-
Howdy
Hello Everyone, My name is Robert Johnson. I am a 19 year old web designer. I have been doing this since I was 14 and have made a career out of it. I graduated high school with a full time web design job but my boss was shady so I quit and decided to work on my own. I am now a pretty successful web designer. My biggest client has been Keller Williams Realty and I do a lot of business through them. If I was to give any advice to anyone here its that, don't be afraid to take that risk and do what you want. Because I took that risk, I now work out of home and make my own hours. God Bless, Robert Johnson
-
help me I'm stupid
I normally use PHPMailer. Its a awesome little script that doesn't need very much editing. All you need to do is add this code to your site and then download and upload the 2 files in my post. require("class.phpmailer.php"); $addemail = $_POST['email']; // Your posted email $mail = new PHPMailer(); $mail->IsSMTP(); // set mailer to use SMTP $mail->Host = "YOUR SERVER; // specify main and backup server $mail->SMTPAuth = false; // turn on SMTP authentication $mail->Username = "jswan"; // SMTP username $mail->Password = "secret"; // SMTP password $mail->From = "WHO EMAIL IS FROM"; $mail->FromName = "NAME OF EMAIL FROM"; $mail->AddAddress($addemail); //$mail->AddAddress("ellen@example.com"); // name is optional //$mail->AddReplyTo("info@example.com", "Information"); $mail->WordWrap = 50; // set word wrap to 50 characters //$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments //$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name $mail->IsHTML(true); // set email format to HTML $emailName = $_POST['fullName']; $mail->Subject = "Your Subject"; $mail->Body = "Dear " . $emailName . "<p>" . "<p>YOUR CONTENT HERE </p>"; $mail->AltBody = "Dear " . $emailName . "\n\n" . "YOUR CONTENT HERE \n\n"; if(!$mail->Send()) { echo "Message could not be sent. <p>"; echo "Mailer Error: " . $mail->ErrorInfo; exit; } class.phpmailer.php class.smtp.php
-
Advanced CSS
Howdy Everyone, This is my first post. I have been doing web designing for about 5 years now and now work out of home doing web designing. I have been doing table layouts for the past 5 years and decided its time to move along with the crowd and start doing CSS. I created my first successfully CSS site (www.truefamilyinvestors.com) and was satisfied. BUT now this is where my questions comes in. I am doing a but more advanced layout that doesn't look awesome right now because I am still trying to fix it and make it work. Here is the site: http://www.teamblacklist.com/new/template3.html Here is the tabled site: http://www.teamblacklist.com/new/template.html And here is what I am trying to do. I have a top banner the "Team Black List" picture as the first <div> Then I have a "Main" div with a background that repeats itself to make a "Stretch" look. Ontop of that main "div" I have a "top right" and a "top-left" <div> holding my overlays for the top and right corners of the MAIN div. Then I have the Content div below the top and right corners holding my asfasd content just for testing of the stretch. Below the content I have three <div>'s making up my bottom section of the content box. I need these bottom three divs to move up to meet the content box, but I want the MAIN box to still stretch to put lots of content. And, I do no want to do a scrolling DIV *yuck*. I dont like those. I am attaching the template3.html file which contains all the CSS and HTML and the picture links are full paths. Thanks and God Bless, Robert template3.html