Forum Replies Created

Viewing 30 posts - 25,081 through 25,110 (of 25,536 total)
  • Author
    Posts
  • in reply to: Fullwidth easy sizer height, and button size #707492

    Hey ustadeus,

    1. How can I reduce the height of the fullwidth easy slider? I presumed that the inserted image drives this, but even if I change image height to like 1500x125px, the slider height stays the same?
    You can use this code and add it to Quick CSS (located in Enfold > General Styling):

    ul.avia-slideshow-inner {
        max-height: 125px;
    }

    This will affect the sliders globally, to make this specific you need to use custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and add a class on the slider example home-slider and you will add this css code instead:

    .home-slider ul.avia-slideshow-inner {
        max-height: 125px;
    }

    2. How can I alter the button size to make them bigger?
    You can use this code and add it to Quick CSS:

    .avia-button.avia-size-x-large {
        padding: 32px 80px 30px;
    }

    Let us know if it helps :)

    Best regards,
    Nikko

    in reply to: Please match requested format: Qty (Please help me) #707475

    Hi!

    I have checked the backend and found out that this plugin causes the issue: Woocommerce Poor Guys Swiss Knife, kindly disable it and the issue should be fixed. Try to contact the supports/developers of the said plugin, probably it will be fixed on the next update of that plugin. :)

    Regards,
    Nikko

    in reply to: WooCommerce Advanced Product Labels issues #707469

    Hey!

    I could see the code working in the link you have provided. Just to verify if the white border you mentioned the white space between the products? and the text to be centered is the text at the bottom of the image? I could see the products already next to each other and the text at the bottom is already lifted 3px higher. Can we get more details where this issue shows up? like in desktop or mobile? chrome, firefox, ie? please provide another screenshot showing not only 1 product and also point there the text that hasn’t been centered.

    Best regards,
    Nikko

    in reply to: Footer differs on one page #707463

    Hi Lyse,

    Thanks for the screenshot. Kindly add this code in Quick CSS (located in Enfold > General Styling):

    .av-minimum-height-50 #socket .container {
        height: auto !important;
    }

    Let us know if it works :)

    Regards,
    Nikko

    in reply to: Media library issue on Vendor's user #707459

    Hi Elsa,

    You’re very much welcome :)

    It should be showing up, I have replaced this code:

    #top select#media-attachment-filters,
    #top select#media-attachment-date-filters {
        height: 32px !important;
    }

    to this one:

    #top select#media-attachment-filters,
    #top select#media-attachment-date-filters {
        float: left;
        height: 32px !important;
    }

    Let us know if this is good on your end and if you need more assistance related on this topic. :)

    Cheers!
    Nikko

    in reply to: Mobile menu icon changed to girl emoji #707000

    Hi Steve,

    I commented out this the whole function in functions.php of your child theme which is causing the issue:

    if(!function_exists('avia_register_frontend_scripts'))
    {
    	if(!is_admin()){
    		add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
    	}
    
    	function avia_register_frontend_scripts()
    	{
    		$template_url = get_template_directory_uri();
    		$child_theme_url = get_stylesheet_directory_uri();
    
    		//register js
    		wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
    		wp_register_script( 'avia-default', $child_theme_url.'/js/avia.js', array('jquery'), 1, true );
    		wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
    		wp_register_script( 'avia-prettyPhoto',  $child_theme_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
    		wp_register_script( 'avia-html5-video',  $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);
    
    		wp_enqueue_script( 'jquery' );
    		wp_enqueue_script( 'avia-compat' );
    		wp_enqueue_script( 'avia-default' );
    		wp_enqueue_script( 'avia-shortcodes' );
    		wp_enqueue_script( 'avia-prettyPhoto' );
    		wp_enqueue_script( 'avia-html5-video' );
    
    		if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
    
    		//register styles
    		wp_register_style( 'avia-style' ,  $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
    		wp_register_style( 'avia-grid' ,   $template_url."/css/grid.css", array(), '1', 'screen' );
    		wp_register_style( 'avia-base' ,   $template_url."/css/base.css", array(), '1', 'screen' );
    		wp_register_style( 'avia-layout',  $template_url."/css/layout.css", array(), '1', 'screen' );
    		wp_register_style( 'avia-scs',     $template_url."/css/shortcodes.css", array(), '1', 'screen' );
    		wp_register_style( 'avia-custom',  $template_url."/css/custom.css", array(), '1', 'screen' );
    		wp_register_style( 'avia-prettyP', $child_theme_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
    		wp_register_style( 'avia-media'  , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );
    
    		//register styles
    		if($child_theme_url !=  $template_url)
    		{
    			wp_enqueue_style( 'avia-style');
    		}
    
    		wp_enqueue_style( 'avia-grid');
    		wp_enqueue_style( 'avia-base');
    		wp_enqueue_style( 'avia-layout');
    		wp_enqueue_style( 'avia-scs');
    		wp_enqueue_style( 'avia-prettyP');
    		wp_enqueue_style( 'avia-media');
    
            global $avia;
    		$safe_name = avia_backend_safe_string($avia->base_data['prefix']);
    
            if( get_option('avia_stylesheet_exists'.$safe_name) == 'true' )
            {
                $avia_upload_dir = wp_upload_dir();
    
                $avia_dyn_stylesheet_url = $avia_upload_dir['baseurl'] . '/dynamic_avia/'.$safe_name.'.css';
                wp_register_style( 'avia-dynamic', $avia_dyn_stylesheet_url, array(), '1', 'screen' );
                wp_enqueue_style( 'avia-dynamic');
            }
    
    		wp_enqueue_style( 'avia-custom');
    
    	}
    }

    Try to check if it’s good on your end also? some js or css might need to be adjusted so it works properly with the latest version of the theme.

    Cheers!
    Nikko

    in reply to: Portfolio Item Breadcrumb Incorrect #706986

    Hey!

    Yes, it’s not a code that automatically solves the problem because you need to set 2 different parent pages. As for breadcrumbs not working properly on hamburger menu, the breadcrumb used in desktop is the same as the one used in mobile, I actually tested it on desktop and mobile and have the same issue as mentioned in my 2nd reply.

    Best regards,
    Nikko

    in reply to: IMAGE COLORSECTOR BACKGROUND FULLWIDTH #706946

    Hi,

    Just let us know if you need assistance related on this topic :)

    Best regards,
    Nikko

    in reply to: Enfold Theme Broken Layout #706944

    Hi,

    Glad it’s fixed :)

    Best regards,
    Nikko

    in reply to: Can Not Edit Pages #706943

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Open blog posts in new window #706942

    Hi,

    Glad it’s fixed :)

    Best regards,
    Nikko

    in reply to: Broken images in the backend #706941

    Hi scarletm,

    No problem, just let us know if it’s ready for us to inspect :)
    Best regards,
    Nikko

    in reply to: header: center text instead of logo on mobile #706938

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Problem with font color in widget area on homepage #706936

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Color Section – Odd Duplication of Arrow #706933

    Hi,

    Glad you fixed it :)

    Best regards,
    Nikko

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: WordPress Backend #706931

    Hey thomas_sachse123,

    It’s fixed class-adminpages.php has been corrupted.

    Best regards,
    Nikko

    in reply to: Header #706925

    Hey kimogroup,

    There are lots of headers being used, Can you post a screenshot and a link showing the header?

    Best regards,
    Nikko

    in reply to: text editor #706922

    Hi Davide,

    Glad that you fixed it :)

    Best regards,
    Nikko

    in reply to: Menu link scroll to Advanced Layerslider #706920

    Hi,

    Glad that you fixed it :)

    Best regards,
    Nikko

    in reply to: Fullwith Slider Image Resolution #706919

    Hi,

    Yes, actually I was also a bit surprised why it’s not fetching the original image, even when you try select the original image, but on the frontend the resized one is reflected instead of the original. At the moment I can only suspect it’s one of the plugins causing it, if it were an issue with the theme then we should also experience the same when using fullscreen slider.

    Best regards,
    Nikko

    in reply to: Demo Import – import didn't work #706915

    Hey lukmm,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Blank space on top of header #706914

    Hey Casualmonkey,

    Go to Enfold > Header > Extra Elements (tab) and uncheck Append search icon to main menu, select No Social Icons, No Secondary Menu, No Phone Number/Extra Info. If it doesn’t work go to Enfold > General Styling and find Quick CSS, and add this code:

    #header_meta {
        display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Adding media in post page enfold theme #706912

    Hey a2zfc,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Cart won't add items #706907

    Hey mulligan101,

    You have already posted a thread with the same topic. I’ll be closing this thread.

    Best regards,
    Nikko

    in reply to: Please match requested format: Qty (Please help me) #706906

    Hey mulligan101,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Diagonal Border angle? #706904

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Different body background for each main menu item #706903

    Hi,

    Here’s the list:
    blog (parent) – #top.category-blog
    blogs (single post) – .single-post

    event (parent) – #top .post-type-archive-tribe_events
    events – .single-tribe_events

    Best regards,
    Nikko

    in reply to: Add short separator between blog posts on main blog page #706899

    Hi,

    Did you add the code like this:
    .page-id-2383 article ?

    If yes, try to replace to this one:
    .page-id-19 article

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: WooCommerce Advanced Product Labels issues #706898

    Hi,

    Try to add this codes in Quick CSS (located in Enfold > General Styling):

    This code is for removing white border (left and right).

    div .products .product {
        margin: 0 !important;
    }

    This code is for the text to go up 3px.

    #top .av-product-class-minimal .inner_product_header {
        padding-top: 7px;
    }

    Hope this helps :)

    Best regards,
    Nikko

Viewing 30 posts - 25,081 through 25,110 (of 25,536 total)