Forum Replies Created

Viewing 30 posts - 121 through 150 (of 25,536 total)
  • Author
    Posts
  • Hi Guenni007,

    Thanks for those helpful tips :)

    Best regards,
    Nikko

    Hi Yossi,

    That is correct.
    The problem is most likely from your server which only your webhost can fix.

    Best regards,
    Nikko

    in reply to: slideshow headline in black when it should be white #1427947

    Hi charger70,

    Thanks for providing the admin access.
    I have moved the code to the top and enabled CSS File Merging And Compression
    Please review your site.

    Best regards,
    Nikko

    Hi Eleina,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    .page-id-65 #section-container-width .container {
        z-index: 120;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Uploading Videos Don’t Work #1427945

    Hi MikeTandySwag,

    Thanks for giving us admin access.
    You can fix it by converting your video file from .mov to .mp4
    I have created a test page, where I used an mp4 video which I uploaded in the Media Library and you will see it working properly.

    Best regards,
    Nikko

    in reply to: Team member content #1427942

    Hi sharynt3,

    You can use WPCode plugin to insert the code that should be added in the child theme’s functions.php, just make sure to set it as PHP snippet.

    Best regards,
    Nikko

    in reply to: Add author meta to top of blog #1427941

    Hi Matt,

    You would need to use a child theme to achieve it.
    If you aren’t using a child theme yet, you can get it here: https://kriesi.at/documentation/enfold/child-theme/

    Once you have installed the child theme, create includes folder inside it, then copy loop-index.php from Enfold (parent theme) and paste it inside includes.
    Open loop-index.php and find this code (line 488-509):

    /**
     * Allow to change theme options setting for certain posts
     *
     * @since 4.8.8
     * @param boolean $show_author_meta
     * @param string $context
     * @return boolean
     */
    if( true === apply_filters( 'avf_show_author_meta', 'blog-meta-author' == avia_get_option( 'blog-meta-author' ), 'loop-index' ) )
    {
        $meta_author  = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' ';
        $meta_author .=		'<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>';
        $meta_author .=			'<span class="author">';
        $meta_author .=				'<span class="fn">';
        $meta_author .=					get_the_author_posts_link();
        $meta_author .=				'</span>';
        $meta_author .=			'</span>';
        $meta_author .=		'</span>';
        $meta_author .= '</span>';
    
        $meta_info['author'] = $meta_author;
    }

    Cut the code and paste it on line 378 (put the code below this code):

    $close_header = '';

    Hope it helps.

    Best regards,
    Nikko

    Hi Yossi,

    The error seems to suggest that it cannot establish a connection with the database.
    Try using a default theme and see if the error still persists.

    Best regards,
    Nikko

    in reply to: Centering menu #1427939

    Hi vantagepointmg,

    Please try to add this CSS code:

    @media only screen and (min-width:1367px) {
      #header .main_menu {
        left: 260px;
        display: flex;
        justify-content: center;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Calendry Widget text turn into button that matches enfold #1427937

    Hi joandjaxx,

    On the Book Now, you can add this:
    class=”avia-button avia-size-large avia-color-purple”
    Here’s the code:

    <a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/joandjaxx?hide_landing_page_details=1&hide_gdpr_banner=1'});return false;" class="avia-button avia-size-large avia-color-purple">Book Now</a>

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 1 year ago by Nikko.
    in reply to: Video element size far too large #1427936

    Hi gatehealing,

    You mentioned that 1/2 screen layout was good for the video.
    Try to put 1/4 layout elements on both sides, so it will be:
    1/4 (empty) — 1/2 (video — 1/4 (empty)
    This way it can be centered similar to what Rikard is suggesting.

    Best regards,
    Nikko

    in reply to: Mobile Options & Resizing for Enfold Gallery Feature #1427935

    Hi NicomIT,

    Do you want to make it one column for mobile devices?

    Best regards,
    Nikko

    in reply to: Fatal error after Enfold-Update #1427934

    Hi s_mann,

    Thanks for providing the FTP access.
    Where can we see this error? I have checked it and it seems to be fine, usually when you have fatal errors it takes down the site.

    Best regards,
    Nikko

    in reply to: Delete padding of 50px on div with class container #1427933

    Hi Ita,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top #landing__filmrol--parentcontainer .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Add post featured image on author page #1427932

    Hi nebuddlho,

    Yes, it’s possible but you would need to use a child theme.
    If you aren’t using a child theme yet, you can get it here: https://kriesi.at/documentation/enfold/child-theme/

    Once you have installed the child theme, create includes folder inside it, then copy loop-author.php from Enfold (parent theme) and paste it inside includes.
    Then find this code in line 72:

    $content_output  =  '<div class="entry-content" ' . avia_markup_helper( array( 'context' => 'entry_content', 'echo' => false ) ) . '>';

    above it, add this code:

    if ( has_post_thumbnail($the_id) ) {
    	echo '<div class="author-featured-image">';
    	echo get_the_post_thumbnail( $the_id, 'large' ); 
    	echo '</div>';
    }

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 1 year ago by Nikko.
    in reply to: Rotating Headline and Promoboxes #1427931

    Hi northorie,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (min-width:768px) and (max-width:1180px) {
      #top #main .av-lpvadf1r-9094a82807ca6b00b3712e5ee699c058 > .flex_column {
        top: auto;
        bottom: -126px;
      }
    }

    Best regards,
    Nikko

    in reply to: Button rows in Custom Elements #1427930

    Hi mm-g,

    Please try to add this code in your functions.php:

    add_theme_support( 'show_advanced_custom_element_options' );

    For further information please check our documentation: https://kriesi.at/documentation/enfold/custom-element-templates/#custom-elements-advanced-options

    Best regards,
    Nikko

    in reply to: Submenu Highlight #1427929

    Hi Diana,

    Thanks for giving us admin access.
    I have added this CSS code in your Quick CSS:

    .html_av-overlay-side #top #wrap_all #header .av-burger-overlay-scroll #av-burger-menu-ul li:hover a {
        color: inherit;
    }
    
    .html_av-overlay-side #top #wrap_all #header .av-burger-overlay-scroll #av-burger-menu-ul li a:hover {
        color: #8ca9d3;
    }

    Please review your site.

    Best regards,
    Nikko

    in reply to: Logo Across menu Bar and Full Image Slider #1427928

    Hi condonp,

    That can be done via CSS. Can you give us a link to your page? so we can try to give some CSS code that should help achieve your goal.

    Best regards,
    Nikko

    in reply to: Gallery Problems on IOS #1427925

    Hi Stefan,

    I checked it using an iphone, here’s the screenshot:

    Best regards,
    Nikko

    • This reply was modified 1 year ago by Nikko.
    • This reply was modified 1 year ago by Nikko.
    in reply to: Testimonial navigation arrows #1427515

    Hi sharynt3,

    I’m glad that Mike could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Avia Layout Builder Load Failure #1427514

    Hi 2951e,

    Please check the solution provided in https://kriesi.at/documentation/enfold/icon/#icons-are-showing-as-rectangular-boxes-
    Hope it helps.

    Best regards,
    Nikko

    Hi jasonswain,

    Are you using the Advanced Layout Builder on the single post page? if yes, then it’s the correct behavior.
    The layout is basically reset and you have full control over what appears on the page, for featured image, you can add an image, for share buttons, you can use social share.
    Basically you can create a layout for it and save it as a template so you can re-use it on other posts or pages.

    If you use a default editor, then everything is predefined and the only thing you can change is the content.

    Best regards,
    Nikko

    in reply to: category text uppercase #1427512

    Hi Nancy,

    Yes, it’s possible, please add this CSS Code:

    .single-product-summary .summary > p:first-child {
        text-transform: uppercase;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Gallery Problems on IOS #1427511

    Hi Stefan,

    Thanks for providing the link however the galleries seem to show in one column and I could not find the layout shown in the screenshot.

    Best regards,
    Nikko

    in reply to: Easy Slider images are resizing #1427510

    Hi James,

    I have created a test page and posted a video showing how it is triggered (in the video you would see it is the 3rd image that changes in height which is triggered when the sidebar width was changed). However, this is fixed based on the solution you posted, I just tweaked it a bit so it only targets Easy Slider:

    .easy_slider_auto_height ul.avia-slideshow-inner {
        height: auto !important;
    }

    Please review your site.

    Best regards,
    Nikko

    in reply to: Logo in menu #1427508

    Hi tiadrop,

    I have applied Guenni’s code and modified some CSS:

    @media only screen and (min-width: 768px) {
    	#top .av-logo-container .logo {
    		visibility: visible;
    		opacity: 0;
    	}
    
    	#top #menu-item-logo a {
    		display: flex;
    		align-items: center;
    	}
    
    	#top #menu-item-logo img {
    		max-height: 80%;
    		width: auto;
    	}
    
    	#top .main_menu {
    		left: 0;
    		width: 100%;
    	}
    
    	#top .main_menu .avia-menu.av-main-nav-wrap {
    		position: relative;
    		left: 50%;
    		-webkit-transform: translateX(-50%);
    		transform: translateX(-50%);
    	}
    }
    
    #av-burger-menu-ul .menu-item-logo {
    	display: none
    }

    Please review your site.

    Best regards,
    Nikko

    in reply to: Custom Menu-bar Shape #1427505

    Hi Monika,

    Yes that is the correct place.
    Can you setup a staging site for us? basically it’s a duplicate of your live site, just so we can check further and make changes without causing any issues on your site visitors/users.

    Best regards,
    Nikko

    in reply to: search icon at bottom of mobile menu #1427504

    Hi Munford,

    You’re welcome :)
    Just let us know how it goes.

    Best regards,
    Nikko

    in reply to: Creating a this type of filter #1427403

    Hi aguilerahc,

    That page uses a Portfolio Grid, just make sure to set Sortable? to Yes, display sort options and currently active categories in Content > Sorting.
    Hope this helps.

    Best regards,
    Nikko

Viewing 30 posts - 121 through 150 (of 25,536 total)