1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

Garden walkthrough web template

Discussion in 'Free Website Templates' started by Mimoun, Apr 26, 2013.

  1. Mimoun

    Mimoun Administrator Staff Member Director Verified Member

    Mary, Mary, quite contrary, how does your garden grow? It isn’t quite as beautiful as this gardening website template, we’ll bet!

    [​IMG]

    Download - View - Design


    Web design sub pages:


    [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG]


    This website template will work with all modern web browsers.


    What is included:
    • HTML files source code
    • CSS file source code
    • Images: compressed versions
    • The design source, in this case, the PSD files
    • Sliced PSD file (Photoshop source design)
    Third party Stock Photos licensed from Veer:

    [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG] [​IMG]


    Third party fonts used:
    Font details coming soon.......

    Credits:
    Credit details coming soon......

    Design version 15
    Code version 4

    Download - View - Design
     
  2. Pix

    Pix New Member

    I have been working on a site using this template - in the template download there is a contact form, but there is no php or scripts to make it work ... can anyone help me please ?
     
  3. aamurray

    aamurray New Member

    Hi, Is this available as a theme for Wordpress? Could you create it for Wordpress?
    Thanks,
    Alan.
     
  4. Ruthe

    Ruthe Community Manager

    Hello Alan,

    This theme is not compatible for WordPress, but you can use it in Wix. :)
     
  5. Michael Nichols

    Michael Nichols New Member

    In your Contact Page, set your form up to look like this:

    <form action="contact.php" method="post">
    <label for="cf_name"><span>Name:</span><span>
    <input type="text" name="cf_name">
    </span></label>
    <label for="cf_email"><span>Email:</span><span>
    <input type="text" name="cf_email">
    </span></label>
    <label for="cf_telephone"><span>Telephone Number:</span><span>
    <input type="text" name="cf_telephone">
    </span></label>
    <label for="cf_subject"><span>Subject:</span><span>
    <input type="text" name="cf_subject">
    </span></label>
    <label for="cf_message"><span>Message:</span><span class="message">
    <textarea name="cf_message" id="message" cols="30" rows="10"></textarea>
    </span></label>
    <input type="submit" id="send" value="Send">
    </form>

    And, here would be the contact.php to make it work:
    <?php
    $field_name = $_POST['cf_name'];
    $field_email = $_POST['cf_email'];
    $field_telephone = $_POST['cf_telephone'];
    $field_subject = $_POST['cf_subject'];
    $field_message = $_POST['cf_message'];

    $mail_to = 'youremail@whatever.com';
    $subject = 'Message from a site visitor '.$field_name;

    $body_message = 'From: '.$field_name."\n";
    $body_message .= 'E-mail: '.$field_email."\n";
    $body_message .= 'Telephone: '.$field_telephone."\n";
    $body_message .= 'Subject: '.$field_subject."\n";
    $body_message .= 'Message: '.$field_message;

    $headers = 'From: '.$field_email."\r\n";
    $headers .= 'Reply-To: '.$field_email."\r\n";

    $mail_status = mail($mail_to, $subject, $body_message, $headers);

    if ($mail_status) { ?>
    <script language="javascript" type="text/javascript">
    alert('Thank you for the message. We will contact you shortly.');
    window.location = 'index.html';
    </script>
    <?php
    }
    else { ?>
    <script language="javascript" type="text/javascript">
    alert('Message failed. Please, send an email to youremail@whatever.com');
    window.location = 'index.html';
    </script>
    <?php
    }
    ?>
     
  6. James Anderson

    James Anderson New Member

    This is very comfortable for wordpress. good idea.
     
  7. allcoolwallpapers

    allcoolwallpapers New Member

    Beautiful Eye catching theme.
     
  8. VCCmu

    VCCmu New Member

    whether there is a free template for blogger?
     
  9. Mimoun

    Mimoun Administrator Staff Member Director Verified Member

    We don't have blogger ready versions, but you can convert the html and/or psd source to blogger yourself.