Forum Replies Created

Viewing 30 posts - 24,241 through 24,270 (of 34,981 total)
  • Author
    Posts
  • in reply to: curved fixed header #1034920

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Forms #1034919

    Hi,
    Thanks, I have taken a look at this and some of the forms are a little different, but I tried to recreate this for all of the forms, but please remove all of the css for the forms and use this instead:

    @media only screen and (min-width: 641px) {
    .gform_wrapper .gform_body {
        width: 100% !important; 
        max-width: 500px !important; 
        margin-left: 0px !important; 
        margin-bottom: 3% !important; 
    }
    #top .gform_wrapper .gform_body li>.gfield_label {
      margin-left: 0px !important;
        width: 45% !important;
        max-width: 150px !important; 
    }
    }
    #top .gform_wrapper .gform_body li>.ginput_container {
        width: 50% !important; 
        max-width: 300px !important; 
        float: left !important; 
    margin-left: 0px !important;
    }
    #top .gform_wrapper .gform_body li>.ginput_container {
        margin-bottom: 3% !important; 
    }
    }

    They should all be very close now, but if there are still any issues, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Update to new Enfold version breaking site #1034912

    Hi,
    OK, Please clear your browser cache and check the sites.

    Best regards,
    Mike

    in reply to: Problem with horizontal gallery #1034910

    Hey gabs01,
    Sorry for the late reply, if I understand your question correctly, you would like to have your homepage images in a circle like the ones you linked to in the Private Content area.
    But I don’t see the link to your site, please include.

    Best regards,
    Mike

    in reply to: Forms #1034906

    Hi,
    opps, please add a ” } ” at the end :)

    Best regards,
    Mike

    Hey ksei81,

    I see that all of your errors are for the plugin “revslider” please disable by renaming the plugin folder via FTP to something like “revslider-2”

    Is your WordPress also up-to-date?

    Please explain how you updated, via FTP?

    If you update via FTP you must remove the old copy of Enfold competently before uploading the new version with FTP – otherwise the old elements will remain in /shortcode folder and be duplicate, which breaks the theme.
    Please try, via ftp, delete the “enfold” theme directory and then upload the new “enfold”

    Another possible issue: please ensure your PHP is at least v5.6, if you are unsure please ask your webhost to check that this is done correctly, often this is not done correctly.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Update to new Enfold version breaking site #1034898

    Hi,
    That’s good to hear, please include the ftp access for the next two sites.

    Best regards,
    Mike

    in reply to: How can i add image or text header right side ? #1034896

    Hi,
    Is your Safari showing this between 1160px & 1282px and is it a iPad? I didn’t add “pixel-ratio” into the media query which the Safari takes into account.
    I don’t have a IOS so I can’t effectively adjust this, but we can have a team member look at this for you.

    Shall we make the adjustments for 768px though 1160px, so when it’s looked at later with Safari they can check all of the sizes?

    Best regards,
    Mike

    in reply to: Blog Header #1034894

    Hi,
    Thank you for the feedback, the dev team are making many changes which we hope to remove your struggles.
    Are you satisfied with the solution, or would you like me to login to your site and investigate further?

    Best regards,
    Mike

    Hi,
    I have tried a few solutions on my localhost & found this a little trickier than expected, but I found this one to show the post randomly:

    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params) {
    $query['orderby'] = 'title';
    $query['orderby'] = 'rand';
    return $query;
    }
    

    and this one to show the blog posts randomly within a category.

    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params)
    {
    $query['orderby'] = 'title';
    $query['order'] = 'rand';
    
    $terms = explode(',', $params['categories']);
    if (!empty($terms) && in_array(1, $terms)) 
    {
        $query['orderby'] = 'date';
    }
    return $query;
    }
    

    the “1” is the category, please adjust to suit.

    Best regards,
    Mike

    in reply to: Blog Header #1034879

    Hi,
    Are you using header transparency on that page?
    Another option is this jQuery, Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function custom_blog_title_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      jQuery( '<h1 class="main-title entry-title"><a title="Blog" itemprop="headline">Blog</a></h1>' ).insertBefore( '#top.blog article.post-entry:first-child' );
      });
     </script>
      <?php
      }
      add_action('wp_footer', 'custom_blog_title_script');

    Best regards,
    Mike

    in reply to: How can i add image or text header right side ? #1034876

    Hi,
    Thank you, the smallest width your menu can be without resizing the menu items is 1160px, and your mobile menu ends at 768px, so between those two you should decide if you want to continue the mobile menu more or have the menu items smaller or a mixture of both.
    Some choose to have the mobile menu go to 1024px, but I’ve seen mobile menus go to 1200px, let us know how you want to proceed.

    So for mobile menus I moved the image over the burger and inline with the logo with this css. For now the media query ends at 767px, but this can be changed:

    @media only screen and (max-width: 767px) { 
    #custom_html-2 {
        width: 60px;
        float: right;
        top: -95px;
    }
    }

    2018-11-18-111335
    For 1160px and up I put the image inline with the menu and float it to the end, and adjusted once at 1295px:

    @media only screen and (min-width: 1160px) and (max-width: 1295px) { 
    nav.main_menu {
        width: 85% !important; 
    }
    #custom_html-2 {
        width: 60px;
        float: right;
        top: -5px;
    }
    }
    @media only screen and (min-width: 1296px) { 
    nav.main_menu {
        width: 75% !important; 
    }
    #custom_html-2 {
        width: 60px;
        float: right;
        top: -5px;
    }
    }
    

    2018-11-18-111821

    Best regards,
    Mike

    in reply to: HTML in LayerSlider #1034871

    Hi,
    Oh I see, you had the content outside of the tags on purpose.
    I corrected your content & tags, and I linked to a comparison via dropbox in the Private Content area.
    Please clear your browser cache and check your layerslider.

    Best regards,
    Mike

    in reply to: Masonry Gallery Hover Action #1034865

    Hi,
    Thanks for the screenshot, I wonder why your blue overlay is so off in your screenshot? Here is the screenshot of the one I worked on:
    2018-11-18-093926
    and this is the same one with your css:
    2018-11-18-094916
    this is not as off as your screenshot, but the blue overlay doesn’t stay in the box it goes down to the next element.
    Also is your element inside of another column? That might be limiting it’s size, mine is not and it’s quiet large.

    Best regards,
    Mike

    in reply to: curved fixed header #1034859

    Hi,
    Happy Sunday! :)
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Update to new Enfold version breaking site #1034858

    Hi,
    Thank you for the FTP access, for both sites I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
    Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.

    So please check the sites and let us know if there is anything else we can assist with.

    Best regards,
    Mike

    in reply to: curved fixed header #1034850

    Hi,
    Sorry, I got mixed up, so for your test site
    I used this css to override your image and background-color:

    .header_color .header_bg {
        background: transparent url(//demo.kmu-betreuung.ch/wp-content/uploads/2018/11/test-curved-header.png) center center no-repeat !important; 
        background-size: cover !important; 
        top: 112px !important; 
    }
    #header.header_color {
        background-color: red !important; 
    }

    to make the curve hang down over the pink content, and have the header a solid red. Notice that the image has to hang down 112px because the dips in the curve are a lot and we are trying to hide the straight line of the header.
    2018-11-18-084009

    Best regards,
    Mike

    in reply to: Blog Header #1034828

    Hey losting,
    Please try enabling the title bar for your blog page, by going to the layout option in the page editor, and choosing “display only title”
    2018-11-18-000240
    Please let us know if this is what you had in mind.

    Best regards,
    Mike

    Hey webworm72,
    I have taken a look at your pages and for the second column that is down some, there is a line brake in the source code.

    <br>

    I tested this on my localhost and found that if a new line is created in the text block element then the BR tag is created.
    To solve this issue, simply ensure no line brake is added to the element.
    This is an example with the line break:

    [av_one_half first]<ul>
    <li>Meal planning</li>
    <li>Calorie and macronutrient recommendations</li>
    <li>Recipe selection and review</li>
    <li>Nutrition therapy (for diabetes, high cholesterol, etc.)</li>
    </ul>[/av_one_half]
    
    [av_one_half]<ul>
    <li>Restaurant and dining tips</li>
    <li>Kitchen clean-out and grocery shopping advice</li>
    <li>Information about diet myths, trends, and facts</li>
    <li>Accountability and encouragement</li>
    </ul>[/av_one_half]

    and this is without the line brake:

    [av_one_half first]<ul>
    <li>Meal planning</li>
    <li>Calorie and macronutrient recommendations</li>
    <li>Recipe selection and review</li>
    <li>Nutrition therapy (for diabetes, high cholesterol, etc.)</li>
    </ul>[/av_one_half][av_one_half]<ul>
    <li>Restaurant and dining tips</li>
    <li>Kitchen clean-out and grocery shopping advice</li>
    <li>Information about diet myths, trends, and facts</li>
    <li>Accountability and encouragement</li>
    </ul>[/av_one_half]

    Best regards,
    Mike

    in reply to: How can i add image or text header right side ? #1034825

    Hey koraytastan,
    I recommend using the first method, of creating a widget area in the header and adding your text or image as a widget. What you are experiencing is the lack of room in your header for the widget.
    Please link to your page with the widget area, so we can help adjust the elements.

    Best regards,
    Mike

    Hey Gary,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) and (min-width: 300px) {
    .responsive #top #wrap_all .grid-sort-container .grid-entry {
        width: 50% !important; 
    }
    }

    Best regards,
    Mike

    in reply to: HTML in LayerSlider #1034822

    Hey cl-hurt,
    I took a look at your layerslider, and for some reason your text is outside the paragraph tags.
    Your font and color is correct, right? The only error is that there are no paragraph brakes, right?
    Have you tried disabling your plugins? Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: curved fixed header #1034821

    Hi,
    The first video has a wave.png in the area under the video, it is a example. I took your image and used the tool at Online Background Remover and made your image transparent

    Best regards,
    Mike

    Hi,
    If the code didn’t work, check that the quotes didn’t turn into curly quotes when you copied the code.

    Best regards,
    Mike

    in reply to: Masonry Gallery Hover Action #1034815

    Hi,
    Sorry for the late reply, to have a taller masonry item please try the “High Portrait” Orientation:
    2018-11-17-201130
    to have the blue overlay fill within the masonry item try to place it within the “av-inner-masonry” link this:

    a.av-masonry-entry:hover > .av-inner-masonry:before {
    content: attr(title)!important; 
    background: #0D47A1!important;
    position: absolute!important;
    bottom: 0!important;
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    height: 40%!important;
    z-index: 10!important;
    text-align: center!important;
    line-height: 180px!important;
    opacity: 1!important;
    font-weight: bold!important;
    font-size: 24px!important;
    color: #fff !important;
    transition: ease-in linear 2s!important;
    }
    

    unfortunately the title attribute is not showing with this though.
    To see the element I tried to work on, try Enabling the Avia Layout Builder Debugger and using this shortcode:

    [av_codeblock wrapper_element='' wrapper_element_attributes='' codeblock_type='' av_uid='av-jom6vm8p']
    <style>
    a.av-masonry-entry:hover > .av-inner-masonry:before {
    content: attr(title)!important; 
    background: #0D47A1!important;
    position: absolute!important;
    bottom: 0!important;
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    height: 40%!important;
    z-index: 10!important;
    text-align: center!important;
    line-height: 180px!important;
    opacity: 1!important;
    font-weight: bold!important;
    font-size: 24px!important;
    color: #fff !important;
    transition: ease-in linear 2s!important;
    }
    </style>
    [/av_codeblock]
    
    [av_masonry_gallery ids='' items='4' columns='4' paginate='none' size='fixed' orientation='av-orientation-portrait-large' gap='large' overlay_fx='active' animation='active' container_links='active' id='' caption_elements='title excerpt' caption_styling='' caption_display='always' color='' custom_bg='' av-medium-columns='' av-small-columns='' av-mini-columns='' av_uid='av-jom67uwa']
    
    

    Best regards,
    Mike

    in reply to: cant add content to page #1034809

    Hi,
    Thanks for the login, I took a look at your page, this error is typically due to a un-closed html tag in the title fields, such as the strong tags in your titles.
    I used the Avia Layout Builder Debugger
    to check your shortcodes in the template “en” but it is not complete, compared to the homepage.
    I recommend trying to recreate the page again, and keeping an eye on the html tags in the titles to ensure all of them them are closed properly.

    Best regards,
    Mike

    in reply to: Remove PayPal button on product page #1034802

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold update error #1034800

    Hi,
    Glad Rikard could help, thank you for using Enfold.

    Best regards,
    Mike

    in reply to: any product detail page layout in woocommerce appears narrow. #1034799

    Hi,
    If I understand correctly, you would like your product pages to be a single column, full width, and show the product images.
    Where would you like the product images, at the top of the page or the bottom?
    Your product pages have a max-width of 800px, do you want that to stay true, or do you want them to be full width?
    Please include a admin login so we can make the changes.

    Best regards,
    Mike

Viewing 30 posts - 24,241 through 24,270 (of 34,981 total)