Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1326376

    I am using Avia and the latest version of Enfold.
    * How do I copy a form and use it in a different layout element? I saved it as a template and don’t know how to find the templates and paste them somewhere else.
    *How do I keep the contact form from stretching the entire width of the webpage. References made to “edit form element” but all the search results and YouTube videos skip over exactly how this is done or show a solution that worked in the previous version 3-4 years ago.
    * The name of the form is not being used. Instead, the name of the webpage is being used for the name of the form? Also, how do you format the name of the form?

    Thanks,
    Robert

    #1326421

    Hi Chiefi,

    How do I copy a form and use it in a different layout element? I saved it as a template and don’t know how to find the templates and paste them somewhere else.
    If you are using Templates then you can just click on Templates and a dropdown with the names of the templates should appear, just click it and it should add to the content, you’ll just need to drag it to the location where you want to place it.
    You can also use Custom Elements for it.

    How do I keep the contact form from stretching the entire width of the webpage. References made to “edit form element” but all the search results and YouTube videos skip over exactly how this is done or show a solution that worked in the previous version 3-4 years ago.
    Forms usually cover the whole width of the container, you can try to use columns like 1/2 to limit it’s size.
    Or you can add this CSS code in Enfold > General Styling, to limit the maximum width (just change the value):

    #top .avia_ajax_form fieldset {
        max-width: 500px;
    }

    The name of the form is not being used. Instead, the name of the webpage is being used for the name of the form? Also, how do you format the name of the form?
    Form Title seems to show properly as it should, is this the field you are referring?

    Best regards,
    Nikko

    #1326538
    This reply has been marked as private.
    #1326576

    Hi Robert,

    We’re glad that you found that option, but that option basically tells the size of the input field in a row whether it’s full-width or one-half, etc.
    I would suggest instead to use full-width instead then just add this CSS (to limit the maximum width of the field to 420px):

    #top div .av-dark-form .input-text, 
    #top div .av-dark-form input[type='text'], 
    #top div .av-dark-form input[type='input'], 
    #top div .av-dark-form input[type='password'], 
    #top div .av-dark-form input[type='email'], 
    #top div .av-dark-form input[type='number'], 
    #top div .av-dark-form input[type='url'], 
    #top div .av-dark-form input[type='tel'], 
    #top div .av-dark-form input[type='search'], 
    #top div .av-dark-form textarea {
        max-width: 420px;
    }

    As for templates, the templates for the entire page does not remove the reset the page and place the template but it just adds it, so it can also be used.
    But what you are looking for is Custom Element Templates, please refer to our documentation: https://kriesi.at/documentation/enfold/custom-element-templates/

    As for the form issue, can you give us temporary admin access? so we can try to check it.
    Just post the credentials in private content.

    Best regards,
    Nikko

    #1328268

    Pardon my slowness in responding… Credentials are shown below regarding the questions on the form on the landing page.

    Also, two other questions:

    I’m trying to include a background graphic on my footer. Even when I choose a very large photo from my media library, the photo shows very small compared to the text on the footer. I don’t see any way to scale the photo once I imported to the footer. Solution?

    On the enfold slider, how do I create my own dimensions versus the drop-down menu selections? Specifically, I’m trying to limit the Y dimension so that it’s always a constant no matter what the image – even if it truncates part of the image.

    Thanks again for all your help!

    #1328817

    Hi Chiefi,

    Thanks for giving us admin credentials and I apologize for the delayed response.
    I have checked the footer and I can’t seem to find a background graphic placed in there.
    A solution that can be used to modify the size of the background image for the footer is via CSS.

    As for adding your own dimensions for the Slideshow Image Size, first you’ll need to use a child theme so the modification won’t be removed during the theme update.
    You can download and find instructions for the child theme here: https://kriesi.at/documentation/enfold/child-theme/
    Then in the child theme’s functions.php file, add this code:

    add_image_size( 'custom-size', 220, 180 );

    For further information regarding this function, please check the codex: https://developer.wordpress.org/reference/functions/add_image_size/
    Hope this helps.

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.