Forum Replies Created

are often better for cooling We may not necessarily be buying the concept

  • Julita, thank you for the directness of your response. I would like an estimate for the premium support to automate the updates. Ideally, the google calendar would be used to show the schedule of where the truck is & will be. Then, the website would update the map marker at the time the truck is scheduled to be there. If there is another/ better way, please tell me. I will write premium@createit.pl and hope that you will also let them know about this.

    I want to show the owner so he can approve the cost/ or have somebody manually update the location.

    Contact information – yes you have the right emaill address

    Julka, I found the .small-brand code you suggested for the style.css is already there exactly as you recommend. Here is the copy:
    @media (max-width: 990px) {
    body {
    overflow: hidden;
    }
    .navbar-brand {
    display: none !important;
    }
    .small-brand {
    max-width: 240px !important;
    margin: 15px auto !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    }
    .small-brand img {
    display: inline-block !important;
    }
    .hdr1,
    .hdr2,
    .hdr4 {
    width: auto !important;
    background: none !important;
    }
    .hdr1,
    .hdr4 {
    color: #fff !important;
    The contact form issue is most important for me. This display issue can come after if that helps. Liz

    From my contact.html
    <script src=”./assets/form/js/form.js”></script>

    Julka, I read your post and verified the path change and took a look at the form.js file
    They are as you show them in the screen shots – so I am not sure why the message is not delivered. Could you test it, please and advise? I get the green message that the request was submitted, but nothing shows up in my mail – even span folder. Thanks, Liz

    Julka,

    The message does not arrive in my email inbox. Can you tell me where to look for the problem?
    This is my form.php.
    <?php

    $to = “elsiecrow@gmail.com”;
    $from = “elsiecrow@gmail.com”;

    $headers = “From: ” . $from . “\r\n”;

    $subject = $_POST[‘msg_subject’];
    $body = $_POST[‘msg_subject’] . “\r\n\r\n”;

    $body .= “E-mail: ” . $_POST[’email’] . “\r\n”;

    if ($_POST[‘field_’]) {
    foreach ($_POST[‘field_’] as $key => $item) {
    if ($item != ‘ ‘) {
    $body .= “Field ” . $key . “: ” . $item . “\r\n”;
    }
    }
    }

    if (filter_var($_POST[’email’], FILTER_VALIDATE_EMAIL)) {
    if (mail($to, $subject, $body, $headers, “-f ” . $from)) {
    $message = ‘OK’;
    } else {
    $errors = ‘Error’;
    echo json_encode(array(‘errors’ => $errors));
    exit;
    }
    } else {
    $errors = ‘Error’;
    echo json_encode(array(‘errors’ => $errors));
    exit;
    }

    echo json_encode(array(‘msg’ => $message));
    exit;

    Julka,

    I am viewing the site from a large screen – so I am not clear how these changes will address the menu position issue. I think it has something to do with this part of the style.css.

    @media (max-width: 990px) {
    .navbar-default .navbar-collapse {
    background: transparent url(“../images/bg-1.jpg”) repeat-y top center;
    z-index: 2;
    position: relative;
    }
    }

    I do not understand where to place the code for the small brand you mention and think it is a different issue. P)lease advise. You can view the site as always. Thanks, Liz

    This reply has been marked as private.
    This reply has been marked as private.

    …with the right size attachment

    Attachments:
    You must be logged in to view attached files.

    I even included the <script src=”form/js/form.js”></script> line in the body (near the top) of the contact.html page, it still does not seem to work

    This reply has been marked as private.
    This reply has been marked as private.

    Yes, it is noticeable – moving from Contact Us to See Our Menu or to Our Story. Is there a way I can resolve this?

    This reply has been marked as private.