Jump to content

Jsheffers

Member
  • Posts

    25
  • Joined

  • Last visited

Contact Methods

  • Website
    http://www.plainshanedesign.com

Jsheffers's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. PHP Class tonight :)

  2. Wordpress is a great start for a first CMS. I love Drupal but like Stefan said it's a pain to configure, but extremely powerful.
  3. I wouldn't completely abandon this practice because it is useful in other situations. For example if you were in the situation below it would be useful. <p class="price">$<span>10.00</span></p> This would allow you to style the $ sign and the actual dollar value independently. Lets say for some crazy reason you wanted the $ to be bold and the actual 10.00 to be italic. You would use the CSS below. .price { font-weight: bold; } .price span { font-weight: normal; font-style: italic; } Of course you could shorthand the Font property but for simplicity sake I just split it into weight and style. In other words because in your example you wrapped all of the content in a div and the span tag it has no purpose, but in the example I presented the dollar sign is outside of the span tag. Hope this helps.
  4. Thanks that fixed it. Thats weird to because I even ran a script that applied z-index to each element on the page highest numbers for elements at the top then decreasing by 10 and it still wouldn't work. One other weird thing is happening. When you hover over "Buying" the "search the MLS" list item is somehow being pushed over.... It doesn't happen for any other list item...
  5. I am having trouble getting the navigation to sit on top of my javascript fading images. It works on every browser on the mac. Firefox and opera on the PC. Except IE. www.p y l e r ealty.com Any help would be absolutely great. It also pushes one of the drop down items to the left. Shane
  6. NVM got it working. Had to do double quotes on the email address. Not sure why, but it worked. Now onto the If conditional I have no clue how to do.. Wish me luck.. lol
  7. Can't get the BCC to work... Here is my code... <?php $destination=$_POST['emailCategory']; $name=$_POST['name']; $emailCategory=$_POST['emailCategory']; $email=$_POST['email']; $from ="Website Inquiry"; $phone=$_POST['phone']; $mes=$_POST['mes']; $header="From: $name"; $newMes="Name: $name\n Category: $category\n Email: $email\n Phone: $phone\n Message: $mes\n"; $headers .= 'Bcc: test@mac.com' . "\r\n"; mail($destination,$from,$newMes,$headers,"From: Website Inquiry"); //This line sends you to the thank you page header( 'Location: http://www.test.com/thanks.html' ); ?>
  8. Ok here is the problem. The OTHER category for example. I want that to go to the bosses email, which in the code above his email is test@mac.com. But they way I have it setup now he gets two emails. One from the emailCategory VAR, which is being fed an email address from the form. Then I have it calling another mail method which goes straight to the boss. If I BCC the boss what should I set the value"" for the categories that only the boss is getting? I hope that made sense, I'm still learning so I apologize if I'm not explaining it properly.
  9. The fav icon shouldn't be pink. I changed it a while ago. It should have PSD in it with the blue color. I still have some grammatical errors to fix, but thanks for your input. I will take your comments into consideration. As far as under the tutorials and photography those are images. Not actual text so should I change the image to have the text underlined. The font looks good for the nav on a mac, but windows sucks at rendering text. I'll be making changes as it progresses. Thanks again.
  10. Let me explain what I am trying to achieve here. I am doing a site for a real estate company which has a PHP form. I have it setup where you type in your name email, and a message. I also have a drop down menu of choices to pick from. Each category needs to be sent to a different persons email, and all of the messages need to go to the boss. Here is what I have so far. <?php $destination=$_POST['emailCategory']; $name=$_POST['name']; $emailCategory=$_POST['emailCategory']; $email=$_POST['email']; $from ="Website Inquiry"; $phone=$_POST['phone']; $mes=$_POST['mes']; $header="From: $name"; $newMes="Name: $name\n Category: $category\n Email: $email\n Phone: $phone\n Message: $mes\n"; mail($destination,$from,$newMes,"From: Website Inquiry"); mail("test@mac.com",$from,$newMes,"From: Website Inquiry"); header( 'Location: test.html' ); ?> The html looks like this.... Name: Category ...Select a Category Vacation Rentals Yearly Rentals Property Management Work Order Request Other Email: Phone: Message: Any Help would be greatly appreciated
  11. I have been on this forum for a while, and my portfolio has taken many different turns. This is my most recent design. Let me know what you think. Still working out kinks so don't be too harsh. www. pl a insh ane design.com
  12. I agree. Yeah I agree fix the width and center it.
  13. Dang that sucks... I was wondering how you figured it out. BTW Your site is awesome!
  14. I just finished this site. I'm not completely happy with it, but I'll see what kind of review I get. I know Ben has already seen some of it, because he helped me with the code. Let me know what you think. www.shan e jeffer s photography.com/pst [remove spaces obviously] ^ Thanks everyone.
×
×
  • Create New...