Beauté - A Health & Beauty Site Template

Themeforest Beauté - A Health & Beauty Site Template HTML Template

Download Beauté - A Health & Beauty Site Template HTML Template

Download Beauté - A Health & Beauty Site Template HTML Template




Meet Beauté. A Site template for health resorts, spas and beauticians. Beauté contains all the templates you would need to create a great looking website to boost your business.




All the features



  • Fullscreen homepage image slider

  • Responsive layout based on Foundation

  • Retina ready

  • FontAwesome Icons

  • HTML5/CSS3

  • SEO Optimized

  • 2 /3 / 4 / 6 Column layouts

  • Gallery Template

  • Staff Template

  • Contact Template

  • Beautiful design

  • Threaded Comments

  • Customer Support



Support


For any support matters, issues or help please use the contact form in our profile.



Credits


The demo images are copyrighted by fotolia.com and can’t be used without prior purchase from fotolia.com

Download Beauté - A Health & Beauty Site Template HTML Template

Comments

  1. both in form and contacts in the blog module is inserted my emai to test …., in a blog still does not publish what I write

    ReplyDelete
  2. Hi, sorry I didn’t understand that, is this a reply to my previous question?

    ReplyDelete
  3. hello my client bought this theme and there was a problem with a plugin and now the three services boxes on the home page are not showing I have tried everthing, can you see what’s wrong?


    http://www.emmataylorhd.co.uk/

    ReplyDelete
  4. Hello, I hope you got my reply via email?

    ReplyDelete
  5. Yes I received and I already fix I forget it was a widget.

    ReplyDelete
  6. I have another problem on mozila firefox and internet explorer on the logo area appears link called parapharm and on other pages it shows on the top I dont know why but on google chrome doesnt show.

    ReplyDelete
  7. Hello, I can see it on google as well. you need to open your files and edit out this line: http://d.pr/i/157Y8

    ReplyDelete
  8. when I log in to my account I don’t see it I have searched on theme editor files 404 template, header, index template, page template and front page template php and also on ftp files I found nothing. If I give you wp login details and ftp details by email can you have a look for me please?

    ReplyDelete
  9. Sure thing, please send me credentials at vmasto [at] cssigniter [dot] com

    ReplyDelete
  10. hello do you know what is the problem

    ReplyDelete
  11. Hi. Please help me. I just bought this HTML. I was thinking it is a WP theme but it’s not What to do now? Can I upgrade for WP theme or can I take my money back and buy theme on official website?

    ReplyDelete
  12. Thank You I have another question :/


    It is possible to add category list before services list?


    I have a lot of services which need to be sorted in categories…


    I tried to add category widget to sidebar, but it’s working only with entry categories.

    ReplyDelete
  13. Hi there, for all support questions if you could please open a ticket at the respective support forum on our website Thanks so much and welcome!

    ReplyDelete
  14. Hi,


    I need to put a checkbox required in contact form.


    I already tried, but I don’t succeed


    Can u help ?


    Thanks

    ReplyDelete
  15. Hi, I installed the theme and this showed up in wordpress:


    Broken Themes


    The following themes are installed but incomplete. Themes must have a stylesheet and a template.
    Name Description
    DOCUMENTATION Stylesheet is missing. Delete
    HTML Template is missing. Delete
    PSD Stylesheet is missing. Delete

    ReplyDelete
  16. Hi there, this is not a WordPress theme, this is a static HTML template. If you can contact info [at] cssigniter [dot] com about this issue we’ll issue a coupon for you to use for the WP theme.

    ReplyDelete
  17. Hey, how do I use the FontAwesome icons for both the phone and email address?
    Also, is it possible to make the menu in one horizontal line, then (when the window becomes small) make it switch into that dropdown thing (Hamburger menu)

    ReplyDelete
  18. 2 of the FA, dont seem to work, do you know why?
    http://lashesbyamarie.com/contact.php

    ReplyDelete
  19. Hi there, I’m sorry for the late reply, which icons don’t seem to work? I’ve checked the website and all seem to be there?

    ReplyDelete
  20. I found that I didn’t know how to use the icons, tried to use both the map-pin one and the at one (but those werent available so I used the map-marker and envelope ones instead, is there some sort of list of what icons are available?

    ReplyDelete
  21. Yes of course: http://fontawesome.io/icons/


    Please note that it would be best to also update the fontawesome css, they release new versions with new icons often

    ReplyDelete
  22. Hi, I am having issues getting confirmation of emails sent. The confirmation shows a blank page with number 1. Here is the site: http://marilynssimplydivine.com/contact.html

    ReplyDelete
  23. Hello there. The 1 you are seeing means that the email was sent successfully. This is in place in case you want to implement an AJAX script, the script will get the result and react accordingly. You can edit the contact.php file if you want to get a different outcome upon email send.

    ReplyDelete
  24. I want to implement the response in the same screen using ajax. Here is how I have to code:
    <?php


    //Retrieve form data.
    //GET – user submitted data using AJAX
    //POST – in case user does not support javascript, we’ll use POST instead
    $name = ($_GET[‘name’]) ? $_GET[‘name’] : $_POST[‘name’];
    $email = ($_GET[‘email’]) ?$_GET[‘email’] : $_POST[‘email’];
    $subject = ($_GET[‘subject’]) ?$_GET[‘subject’] : $_POST[‘subject’];
    $message = ($_GET[‘message’]) ?$_GET[‘message’] : $_POST[‘message’];


    //flag to indicate which method it uses. If POST set it to 1
    if ($_GET);
    //recipient – change this to your name and email
    $to = $name . ’ <’ . ‘info@marilynssimplydivine.com’ . ’>’;
    //sender
    $from = $name . ’ <’ . $email . ’>’;


    //subject and the html message
    $s = ‘Comment from ’ . $name;
    $msg = ‘
    <!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN”
    “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
    <html xmlns=”http://www.w3.org/1999/xhtml”>
    <head></head>




    Name
    ’ . $name . ‘


    Email
    ’ . $email . ‘


    Subject
    ’ . $subject . ‘


    Message
    ’ . nl2br($message) . ‘



    ';


    //send the mail
    $result = sendmail($to, $s, $msg, $from);


    //if POST was used, display the message straight away
    if ($_GET) {
    if ($result) echo ‘Thank you! We have received your message.’;
    else echo ‘Sorry, unexpected error. Please try again later’;
    } else {
    echo $result;
    }


    //else if GET was used, return the boolean value so that
    //ajax script can react accordingly
    //1 means success, 0 means failed


    //Simple mail function with HTML header
    function sendmail($to, $s, $msg, $from) {
    $headers = “MIME-Version: 1.0” . ”\r\n”;
    $headers .= “Content-type:text/html;charset=utf-8” . ”\r\n”;
    $headers .= ‘From: ’ . $from . ”\r\n”;
    }
    ?>


    $result = mail($to,$s,$msg,$headers);


    if ($result) return 1;
    else return 0;


    When I submit the form I get the message “Thank you! We have received your message.” on a blank page. I want to get the massage on the same page using ajax, what else do I have to do in the code?

    ReplyDelete
  25. I tried this code and I get the same tihing:


    <?php


    //Retrieve form data.
    //GET – user submitted data using AJAX
    //POST – in case user does not support javascript, we’ll use POST instead
    $name = ($_GET[‘name’]) ? $_GET[‘name’] : $_POST[‘name’];
    $email = ($_GET[‘email’]) ?$_GET[‘email’] : $_POST[‘email’];
    $subject = ($_GET[‘subject’]) ?$_GET[‘subject’] : $_POST[‘subject’];
    $message = ($_GET[‘message’]) ?$_GET[‘message’] : $_POST[‘message’];


    //flag to indicate which method it uses. If POST set it to 1
    if ($_GET);
    //recipient – change this to your name and email
    $to = $name . ’ <’ . ‘info@marilynssimplydivine.com’ . ’>’;
    //sender
    $from = $name . ’ <’ . $email . ’>’;


    //subject and the html message
    $s = ‘Comment from ’ . $name;
    $msg = ‘
    <!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN”
    “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
    <html xmlns=”http://www.w3.org/1999/xhtml”>
    <head></head>




    Name
    ’ . $name . ‘


    Email
    ’ . $email . ‘


    Subject
    ’ . $subject . ‘


    Message
    ’ . nl2br($message) . ‘



    ';


    //send the mail
    $result = sendmail($to, $s, $msg, $from);


    //if POST was used, display the message straight away
    if ($_GET) {
    if ($result) echo ‘Thank you! We have received your message.’;
    else echo ‘Sorry, unexpected error. Please try again later’;
    } else {
    echo $GET;
    }


    //else if GET was used, return the boolean value so that
    //ajax script can react accordingly
    //1 means success, 0 means failed


    //Simple mail function with HTML header
    function sendmail($to, $s, $msg, $from) {
    $headers = “MIME-Version: 1.0” . ”\r\n”;
    $headers .= “Content-type:text/html;charset=utf-8” . ”\r\n”;
    $headers .= ‘From: ’ . $from . ”\r\n”;
    }
    ?>


    $result = mail($to,$s,$msg,$headers);


    if ($result) return 1;
    else return GET;

    ReplyDelete
  26. Could you please email me at nvourva [at] cssigniter.com so we can take a closer look at this issue? It would be helpful if you could include a pastebin (or similar service) URL with the implemented code. Thank you!

    ReplyDelete
  27. Contacted him regarding google maps problem, i have my own google api key inserted in the contact page properly but it does still not work and never heard of the support again..

    ReplyDelete

Post a Comment

Popular posts from this blog

Pav Wines Responsive Theme

Tango - Responsive HTML5 Template

Teddy-Responsive Blog Magazine Portfolio WP Theme