Viewing 30 results - 95,101 through 95,130 (of 142,852 total)
  • Author
    Search Results
  • Hi,

    I see you are running a pretty old version of the theme, the widget problem is due to WordPress updating the way it handles widgets but you should find them again under Inactive Widgets.

    Try following this after you update: https://kriesi.at/support/topic/having-problems-after-updating-to-wordpress-4-5-please-read-this-first/

    Best regards,
    Rikard

    #640109

    Hi,

    This might clear things up: https://kriesi.at/support/topic/on-page-errors-detected/#post-636100

    Best regards,
    Ismael

    #640105

    Hi,

    Glad to hear you found the problem, so you are all set now? Let us know if you should need any further help on the topic.

    Thanks,
    Rikard

    #640094

    Hi,

    We tried to login to the site but it’s not working. Please check. Try to add this in the functions.php file to fix the issue temporarily:

    // contact form fix
    add_action('wp_footer', 'ava_custom_script_cf');
    function ava_custom_script_cf(){
    ?>
    <script>
    (function($){
    	function a() {
    	    $('#top .av-custom-form-color .form_element .button').click(function() {
               $('body').on('av_resize_finished', function() {
                   var ajax = $('.ajaxresponse').hasClass('hidden');
                   if(!ajax) {
                       $('.ajaxresponse').append('
    <h3 class="avia-form-success">Thank you! Your message has been sent!</h3>
    ');
                   }
    	       });
    	    });
    
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    #640090

    In reply to: Hide Anchor Tags

    Hi,

    No problem, please let us know if you should need any more help on the topic.

    Regards,
    Rikard

    Hi!

    The font family of the buttons are the same. It it set to “Open Sans”.

    #top .main_color .avia-button {
        font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    Regards,
    Ismael

    #640076

    Hi!

    Thank you for using Enfold.

    You can customize the menu items in the Enfold > Advanced Styling panel. If you want to add custom css modifications, use the Quick CSS field. Example:

    #top .av-main-nav ul a {
        font-size: 20px;
        min-height: 50px;
        line-height: 50px;
    }

    Cheers!
    Ismael

    #640074

    Hi Vinay

    As mentioned, all pages under the top nav “Menus” – please see below.

    thanks

    #640061

    Hi,

    It’s coming from the heading, try adding this to Quick CSS:

    .av-special-heading.el_after_av_font_icon {
        margin-top: 20px;
    }

    Best regards,
    Josue

    #640052
    havi
    Participant

    Hi guys!!

    Hope you are doing great! Quick question. How do I enable the page sidebar navigation on mobile without having the sidebars enabled?
    (I am referring to how I can navigate to the next or previous post when on desktop with the hovering link on the side)

    I would like to give mobile visitors the option to go to the next page without having to scroll all the way to the bottom of the page.

    If this is not possible, do you know of a plugin that would do it?

    Thank youuuuuu!!

    Warmly,

    Havi

    #640051
    Armstrong310
    Participant

    The payment input fields are showing up mis-aligned. Month and Date should be side by side, and the security code icon should be on the same line also. I followed your suggestion from this support thread (https://kriesi.at/support/topic/gravity-forms-styling-issue/), and changed the classes to match my for, but it didn’t seem to fix it. Any idea on how I can fix it?

    Also, how do I remove the credit card icons?

    Screenshot: http://take.ms/JMlmp

    Thank you guys!

    #640050
    tommoore
    Participant

    Hello,

    I’m having a conflict with a plugin and wanted to open a topic to see if others saw the same problem. I am using the WPFlow Google Anayltics Events tool and the basic one seems to work fine with not conflicts. I recently purchased the Pro version and whenever I activate it I get what appears to be extra “<BR>” entries in all the Headline Rotators and in the full width submenu on our support page. I can demo on our development site. Information is in the private section below. I will leave the pro version activated so you can see the results. If I deactivate it it goes away.

    #640034

    Hey richardhofer83,

    Please use a fullscreen slider you can then add buttons and captions easily.

    To adjust the width of the slider to container width Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-fullscreen-slider {
        border-top: none;
        max-width: 1300px!important;
        left: 50%;
        transform: translate(-50%);
    }
    

    Best regards,
    Vinay

    #640029

    Hey kopf-und-stift,

    After you create a header widget make changes to the css provided in the documentation or use the below code instead to position the widget to the right.

    #header .widget {
      right: 0%;
      padding-top: 0;
      position: absolute;
      top: 0;
      z-index: 999;
    }

    Best regards,
    Vinay

    sutara
    Participant

    Hi – Currently on desktop the main menu shows only on scroll but I would like to have it constantly visible. Could you please tell me how to change this? Thanks!

    #639976

    In reply to: Using whitespace

    Hi,

    Replicate what i’ve did with the first spacer.

    Problem is, when you leave an element uncontained an automated color section will be created for it, and that will have the default section padding settings (which are 50px top and bottom), what you need to do is contain the element and set the padding to zero.

    I also disabled the min-height sections have with this CSS in style.css:

    .avia-section{
    min-height: initial;
    }

    Best regards,
    Josue

    #639970

    Hey adinahirjanu,

    1. to make the menu items look like a button or add border style go to Appearance > Menu and select the following options

    3. Use a button element and set the link to manual and open in same window that way it opens up in a modal window.

    To answer 1.b, 2, 4 and 5 Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Request you to open a new ticket for unrelated issues that way we can keep the focus on the main topic and avoid confusion.

    Best regards,
    Vinay

    #639955

    Hey!

    Try adding this code to the Quick CSS:

    .avia_desktop.avia_transform3d .av-masonry-entry .av-inner-masonry{
    	-webkit-animation: avia_msonry_show 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); /* Safari 4+ */
    	animation:         avia_msonry_show 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); /* IE 10+ */
    }
    

    Cheers! 
    Josue

    Hey!

    Try adding this code to the Quick CSS:

    #av_product_description .av-parallax {
        transform: none !important;
        -webkit-transform: none !important;
        position: absolute;
        top: 0px !important;
        height: 240px !important;
    }

    Cheers! 
    Josue

    #639940
    Gal726
    Participant

    It was working fine and then i just went in to edit and it won’t stop loading in the editing section. it’s not working.

    admin info in private content

    #639930
    adinahirjanu
    Participant

    Hi,

    I’m building my website using the Enfold Shop Theme and I need help with the following:

    1) Small bar above Main Menu

    I only have one link here called ‘Welcome Video’. I would like this link to be:

    a) button style: bordered (I ticked this option in the Secondary Menu, Menu Style but it didn’t seem to make any difference) If there is any CSS to add please provide the code and the exact location I need to paste it

    b) in a bigger font so it stands out (I don’t see ‘Font Size’ in the Advanced Styling. Only font color, background color, border color and font family) If there is any CSS to add please provide the code and the exact location I need to paste it

    c) open it in the same window as a video overlapping the page Where do I put my Youtube URL and how the overall link should look like to be able to do this?

    2) Main Menu sublevel Links

    From all of the options in the Advanced Styling for the main menu dropdown only background color seems to work for me. I’ve tried to change the font size, font color and line height but nothing seems to change. What could be wrong?

    3) The call-to action button on the top slide on the homepage

    I would like when people click on this button to be able to open up, in the same window, a quiz. I don’t have a link for the quiz but just a shortcode provided by the quiz plugin which looks like [123456789]. So how do I put this code instead of a URL link in the Caption section?

    4) Blog Posts on the Homepage To display blog posts on my homepage I used the Blog Posts Content Elements. They display nicely but I would like to be able to:

    a) remove the publication date b) put the blog titles in blue

    5) The Blog Page

    a) I would like the publication date removed. All Blog meta elements are unchecked but publication date still displays. b) I would like a ‘Read more button’ after the post excerpt like on the homepage but not sure how to do it c) put the blog titles in blue

    Thanks for your help!

    #639918

    Hi Vinay,

    thank you, but it doesn’t seem to work.

    could it be conflicting with my other css for sub menu?
    here’s all the css currently active on my site

    @media only screen and (max-width: 580px) {
    .av-submenu-container ul {
      white-space: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar; 
    }}
    
    ::-webkit-scrollbar { 
        display: none; 
    }
    
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        position: fixed!important;
    }}
    #639917

    Hi,

    I checked all the main pages on your site but couldn’t find the fullwidth submenu. However you can follow these instructions

    Please try adding this at the very end of your themes / child themes functions.php file:

    //One page nav highlight
    
    function activateMenuItem(){
    ?>
    <script>
         jQuery(document).scroll(function() {
         var sections = jQuery('.avia-section'),
             menu   = jQuery('.av-submenu-container'),        
             nav_height = menu.outerHeight();
             jQuery(window).on('scroll', function() {
                var cur_pos = jQuery(this).scrollTop();
                sections.each(function() {
                    var top = jQuery(this).offset().top - 300,
                        bottom = top + jQuery(this).outerHeight();
                    if (cur_pos >= top && cur_pos <= bottom) {
                        menu.find('a').removeClass('active-menu-item');                    
                        menu.find('a[href="#' + jQuery(this).attr('id') + '"]').addClass('active-menu-item');
                    }
                });
            });
        });
     
    </script>
    <?php
    }
    add_action('wp_head', 'activateMenuItem');

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    /* onepage nav active menu item*/
    @media only screen and (min-width: 769px) {
    .current_page_item .avia-menu-text, .active-menu-item {
      color: #b70e14!important;
    }
    }
    
    /*remove default styles*/
    .current-menu-item .avia-menu-text {
          color: #0a5476!important;
    }
    
    .current-menu-item .avia-menu-fx {
          display: none;
    }
    
    .active-menu-item .avia-menu-fx {
          display: block!important;
        background-color: #c05f5f;
        border-color: #a03d3d;
        height: 2px;
        width: 100%;
        opacity: 1!important;
        visibility: visible;
    }
    

    If you still have any issues please provide a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    #639916

    Hey shalenie,

    Please check our recommend list of plugins here https://kriesi.at/support/topic/recommended-plugins/

    I personally use statcounter this one is simple and straight forward however for a more robust and advanced stats you can always count on google analytics :)

    Best regards,
    Vinay

    #639913

    Hey laptophobo,

    Check your site again i just scraped the open graph image from fb debuger tool https://developers.facebook.com/tools/debug/sharing/?q=http%3A%2F%2Fkarnaliexcursions.com%2F

    if you still have any issue please use a open graph plugin https://wordpress.org/plugins/search.php?q=open+graph

    Some helpful links

    https://developers.facebook.com/docs/sharing/best-practices

    Best regards,
    Vinay

    #639906

    Topic: bar above top menu

    in forum Enfold
    yampieters
    Participant

    hello, in basic options one can choose this bar above a top menu, for example for phone number and email address.
    but where can you put in this info? is it a widget? appearantly not

    #639900

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        position: fixed!important;
    }}
    
    

    Best regards,
    Vinay

    #639899

    Hey!

    Please use the below code this will affect only the colorsection with the class .fullscreen_color_section adjust top padding for the special heading to suit your design.

    @media only screen and (max-width: 767px) {
    .fullscreen_color_section {
        margin-top: -120px;
    }
    .fullscreen_color_section .av-special-heading {
        padding-top: 120px;
    }}
    

    Cheers!
    Vinay

    #639881

    Hey steffen_aufatz,

    Please change the code to the following:

    @media only screen and (min-width: 768px) {
    .container_wrap.sidebar_left{
    background:-webkit-gradient(linear,right top,left top,color-stop(red,0.295),color-stop(white,0));
    background:-webkit-linear-gradient(left, red 29.5%, white 0%);
    background: -moz-linear-gradient(left, red 29.5%, white 0%);
    background: -o-linear-gradient(left, red 29.5%, white 0%);
    background: linear-gradient(left, red 29.5%, white 0%);
    }
    }

    Best regards,
    Jordan

    #639878
    steffen_aufatz
    Participant

    Hi there, I came across some code (#245767) to alter the background colour for the sidebar but it doesn’t seem to be working.

    Following is the code:

    @media only screen and (min-width: 768px) {
    .container_wrap.sidebar_left{
    background:-webkit-gradient(linear,right top,left top,color-stop(red,0.295),color-stop(white,0));
    background:-webkit-linear-gradient(right, red 29.5%, white 0%);
    background: -moz-linear-gradient(right, red 29.5%, white 0%);
    background: -o-linear-gradient(right, red 29.5%, white 0%);
    background: linear-gradient(right, red 29.5%, white 0%);
    }
    }

    The sidebar is on the left hand side for the site and I’ve changed the code accordingly i.e .container_wrap.sidebar_right to container_wrap.sidebar_left however the background colour shows up on the right hand side. Please see the following link showing the problem: http://ambassadortravel.com.au/new/index.php/home/2016-kentucky-derby-racing-tour-tour-description/

    Could someone please help with this. Any advice would be appreciated.

Viewing 30 results - 95,101 through 95,130 (of 142,852 total)