Viewing 30 results - 95,191 through 95,220 (of 142,852 total)
  • Author
    Search Results
  • #639143

    In reply to: Content section height

    Hi,

    Please refer to this post for a solution https://kriesi.at/support/topic/color-section-at-least-60/#post-591950

    Please make sure to use a child theme to make those changes.

    Best regards,
    Vinay

    #639136

    In reply to: Hide Anchor Tags

    Hey rlogan2334!

    I am not sure how it can speed up development, but maybe those topics can actually help you.
    You would need some JS to make it happen

    http://stackoverflow.com/questions/4550425/how-to-hide-anchor-link-with-jquery
    http://stackoverflow.com/questions/9165479/how-to-hide-an-anchor-tag-by-href-id-using-css

    Let us know if we can do anything else related to our theme

    Regards,
    Basilis

    #639132

    Hey vossenm!

    Thank you for using Enfold.

    Do you have a code ? You can modify the footer.php file and put the “statistics” code inside the socket container. Or use the “avia_before_footer_columns” action hook. Example: https://kriesi.at/support/topic/footer-layoutspacing-questions/#post-524341

    Regards,
    Ismael

    #639125

    Hi,

    thank you for your response. The solution provided in the link you posted is not the correct answer. However it directed me to the root cause and I could solve the issue by providing the correct fix at https://kriesi.at/support/topic/enfold-category-admin-not-working-properly-cant-use-yoast-seo-plugin-panel/#post-639119

    Please provide Kriesi with my solution to be integrated with the next update.

    #639121

    Hi,

    I think asking your hosting provider for an upgrade would be the best way forward yes, please let us know if you should need any more help on the topic.

    Thanks,
    Rikard

    #639103

    Hi,

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

    Regards,
    Rikard

    #639087

    Hey steffen_aufatz,

    Thanks for getting in touch with us!

    Where in the code right appears, you need to change the word to left. So the above code should look like the following instead:

    @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%);
    }
    }

    Just copy and paste the above code and see if it helps.

    Best regards,
    Jordan

    #639079
    steffen_aufatz
    Participant

    Hi there,

    I’m trying to change the background colour of the sidebar for the theme ‘Enfold’ and came across some code in the forum to alter this (#245767). The sidebar for my site is on the left side and I have changed the code accordingly from .container_wrap.sidebar_right to container_wrap.sidebar_left however the background red colour for the side bar shows up on the right hand side.

    Following is a link to see what is happening http://ambassadortravel.com.au/new/index.php/home/2016-kentucky-derby-racing-tour-tour-description/ and below is the code used and placed in the custom.css file. Could someone please advise how I can get a background colour for the sidebar to show correctly. Any advice would be appreciated.

    @media only screen and (min-width: 768px) {
    .container_wrap.sidebar_right{
    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%);
    }
    }

    #639072

    Hi,

    Sorry for the late reply. I checked your site on ipad mini using Chrome. I see what you are referring to under that section, there is a small gap and a line when viewing in landscape orientation but not in portrait. I’m not sure what is causing it though since I can’t reproduce it on desktop browser, and because of that I can’t inspect it to see what is causing it either. It doesn’t really interfere with your design of the page in my opinion, is this something you can live with maybe?

    Regards,
    Rikard

    #639055

    Hi,


    @Empatica
    : That is the default template of the single product pages in the theme. If you want to display a right or left sidebar on single product pages, please follow the instructions here: https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220

    Best regards,
    Ismael

    #639053

    Hi,

    1.) Please try the solution provided here: https://kriesi.at/support/topic/enfold-category-admin-not-working-properly-cant-use-yoast-seo-plugin-panel/#post-628498

    2.) Let’s see if number 1 fix the issue.

    Best regards,
    Ismael

    #639051

    Hi,

    We are getting this error on those pages:

    https://www.zappbug.com/wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 403 (Forbidden)
    

    Please try the solution provided here: https://kriesi.at/support/topic/avia-layout-builder-not-working-14/#post-637184

    Or set the builder to debug mode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Best regards,
    Ismael

    #639044

    Hey!

    My bad. The code above was incorrect. Please try the following:

    @media only screen and (max-width: 767px) {
    .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title, .avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-title {
        visibility: visible;
        -webkit-animation: none;
        animation: none;
        opacity: 1;
        -webkit-transform: translate(0,0) !important;    
        transform: translate(0,0) !important;
    }
    }

    That should disable the caption animation. If you want to hide the text and captions on mobile, please use the following:

    @media only screen and (max-width: 767px) {
    .responsive #top .slideshow_caption {
        display: none !important;
    }
    }

    Regards,
    Ismael

    #639028

    Hi,

    You can include a custom.js in your child theme and place the following:

    (function($){
    
        $(document).ready(function()
        {	
            avia_header_size();		
    
        });
    
        function av_change_class($element, change_method, class_name)
        {	
        	if($element[0].classList)
        	{
        		if(change_method == "add") 
        		{
        			$element[0].classList.add(class_name);
        		}
        		else
        		{
        			$element[0].classList.remove(class_name);
        		}
        	}
        	else
        	{
        		if(change_method == "add") 
        		{
        			$element.addClass(class_name);
        		}
        		else
        		{
        			$element.removeClass(class_name);
        		}
        	}
        }
    
    	function avia_header_size()
    	    {
    	        var win				= $(window),
    	            header          = $('.html_header_top.html_header_sticky #header'),
    	            unsticktop		= $('.av_header_unstick_top');
    
    	        if(!header.length && !unsticktop.length) return;
    
    	        var logo            = $('#header_main .container .logo img, #header_main .container .logo a'),
    	            elements        = $('#header_main .container:not(#header_main_alternate>.container), #header_main .main_menu ul:first-child > li > a:not(.avia_mega_div a, #header_main_alternate a), #header_main #menu-item-shop .cart_dropdown_link'),
    	            el_height       = $(elements).filter(':first').height(),
    	            isMobile        = $.avia_utilities.isMobile,
    	            scroll_top		= $('#scroll-top-link'),
    	            transparent 	= header.is('.av_header_transparency'),
    	            shrinking		= header.is('.av_header_shrinking'),
    	            topbar_height	= header.find('#header_meta').outerHeight(),
    	            set_height      = function()
    	            {	
    	                var st = win.scrollTop(), newH = 0, st_real = st;
    
    					if(unsticktop) st -= topbar_height; 
    					if(st < 0) st = 0;
    
    					if(shrinking)
    	                {
    		                if(st < el_height/2)
    		                {
    		                    newH = el_height - st;
    		                    if(st <= 0){
    								newH = el_height;
    						    }
    
    		                    av_change_class(header, 'remove', 'header-scrolled');
    		                    //header.removeClass('header-scrolled');
    		                }
    		                else
    		                {
    		                    newH = el_height/2;
    		                    //header.addClass('header-scrolled');
    		                    av_change_class(header, 'add', 'header-scrolled');
    		                }
    
    		                if(st - 30 < el_height)
    		                {
    		                    av_change_class(header, 'remove', 'header-scrolled-full');
    		                }
    		                else
    		                {
    		                    av_change_class(header, 'add', 'header-scrolled-full');
    		                }
    
    		                elements.css({'height': newH + 'px', 'lineHeight': newH + 'px'});
    	                	logo.css({'maxHeight': newH + 'px'});
    	                }
    
    	                if(unsticktop.length)
    	            	{
    	                	if( st <= 0)
    	                	{
    		                	if(st_real <= 0) st_real = 0;
    	                		unsticktop.css({"margin-top":"-"+st_real+"px"});
    						}
    						else
    						{
    	                		unsticktop.css({"margin-top":"-"+topbar_height+"px"});
    						}
    	            	}
    
    	                if(transparent)
    	                {	
    	                	if(st > 50)
    	                	{	
    	                		//header.removeClass('av_header_transparency');
    	                		av_change_class(header, 'remove', 'av_header_transparency');
    	                	}
    	                	else
    	                	{
    	                		//header.addClass('av_header_transparency');
    	                		av_change_class(header, 'add', 'av_header_transparency');
    	                	}
    	                }
    
    	            }
    
    	            if($('body').is('.avia_deactivate_menu_resize')) shrinking = false;
    
    	            if(!transparent && !shrinking && !unsticktop.length) return;
    
    				win.on( 'debouncedresize',  function(){ el_height = $(elements).attr('style',"").filter(':first').height(); set_height(); } );
    	            win.on( 'scroll',  function(){ window.requestAnimationFrame( set_height )} );
    	            set_height();
    	    }
    
    })(jQuery);

    Best regards,
    Josue

    #639002

    Here is the site. If you look at the top gallery it has 5 pics. I’ve made some progress but there are still some formatting issues.

    I copied the same pic 4 times in the text editor. This is not a gallery, it is just a text block with images I placed in it. I need all the images to line up the same but the are staggered. If I don’t do captions they align correctly.

    All I want is the images to line up correctly and have both a caption and URL.

    #638998

    there is no “includes” in the child theme. We did everything off of the original enfold theme that was initially installed. I just read this thread and it seems this is common problem: https://kriesi.at/support/topic/can-i-customize-the-helper-main-menu-php-under-child-theme/ Can I get this fixed please or at least tell me what I need to do to fix this.

    #638994
    emkay_consulting
    Participant

    I want to use the posting slider on the home page, however, I want to only put the title below it (NOT the taxonomy) as is showing now. Is there somewhere in the documentation that I can change this section of code (in a child theme)? To see what I’m talking about, please scroll down on this page (http://www.northpghrealtors.com/?page_id=3546) to FEATURED LISTINGS, the post slider is the top row and a plugin shortcode is the row below. I’m trying to get the same effect as what’s below, but using the scroll feature. Not having the taxonomies is a great first step – I think I can work out the rest if I can find where this is in the code! Thanks very much!

    OK, but it did show up at the top, just empty? How to I get it into that space? Thanks.

    #638950

    In reply to: I need Blog guidance

    thanks, you are so helpful.

    But something odd is happening and it may be that I have conflicting CSS.

    if I click on BLOG from top nav,
    I get the page I like
    but if I go to edit it by way of “edit page”
    I get an old page I was previously building with a header that says “this and that…”
    therefore, I am unable to add the comments/so media section

    Also- my READ MORE —> is missing

    Can you show me where to get code to put into my single blog page to re-do it?
    After clicking in to the singe blog page, there is no header and it looks a mess. It’s still showing featured image and top image twice on some pages.

    Mathuseo
    Participant

    Hi,

    I’ve created a section and add CSS “position:fixed” to the code block of the page. Now the section “jumps” to the top (the fixed position I gave the element) after the page finished to load. Any idea how to fix that?

    You can see this strange behaviour in my link as private content.

    • This topic was modified 9 years, 10 months ago by Mathuseo.

    Ok I found the exact issue. Please help me with this. I re-installed the child theme and changed the settings one by one. As soon as I set a front page in main enfold theme settings, the shortcodes stop working. Please help

    • This reply was modified 9 years, 10 months ago by Roger.
    #638899

    Yeah, I did that. the problem occurs if you resize the window on a desktop computer. Normally, the content and sidebar resize proportionately, but with the above code. the sidebar stays the same width, obscures the content until the window gets down to mobile size when it then drops to the bottom of the screen.

    BTW, I was using a 240 px sidebar width.

    • This reply was modified 9 years, 10 months ago by rwwood.
    #638897

    Hey Philippe,

    Thanks for getting in touch with us!

    In the above code you pasted, please remove the following line with the padding:

    padding-top: 158px !important;

    That should remove the space on mobile.

    Best regards,
    Jordan

    I’m thinking this has something to do with the theme settings. The main theme parses the shortcodes correctly, reinstalling a new child theme parses correctly, however if I import the enfold theme settings into a new child theme they stop parsing and I see the error.

    What can we do about this?

    #638860
    tadin15
    Participant

    Hi,

    I’m trying to link a menu-item to a script but it doesn’t seem to work. Besides that if the link is outside the avia menu it works properly.

    This is my link in avia:

    <li id=”menu-item-848″ class=”menu-item menu-item-type-gs_sim menu-item-object-gs_sim menu-item-top-level menu-item-top-level-6″>PEDIR ONLINE

    This is my script:
    <script type=”text/javascript”>
    var _pyw = {
    _chain: ‘kanu-sushi’,
    _type: ‘online’,
    _country: ‘ar’,
    _linkID: [‘menu-item-847’]
    };
    (function() {var py = document.createElement(‘script’); py.type = ‘text/javascript’; py.async = true;py.src = ‘http://www.pedidosya.com/widget/js/py.min.js?&#8217; + new Date().getTime();var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(py, s);})();
    </script>

    Thanks!

    #638859
    Etienne
    Participant

    I have setup a color section to show an image at 100% of browser height, top center and no repeat. But the image quality is very poor and a lot of pixelation … see here – http://www.photographicafrica.com/photographicsafaris/

    here is what the image looks like – http://www.photographicafrica.com/wp-content/uploads/2016/03/Photo-safari-header-image-1.jpg

    Can you help me with this please?

    Regards
    Etienne

    #638847

    Hi,

    check out this page:
    Pages
    An example here:
    https://kriesi.at/support/topic/changing-a-specific-page-with-quick-css/#post-223394

    Hope this helps!

    Best regards,
    Andy

    #638846

    Hi,

    you can use media queries to have a different result for different browser sizes:

    @media only screen and (max-width: 736px) {
    #top #main .sidebar {
        background: gold;
        min-height: 100%!important;
        position: absolute;
        right: 0;
        padding-right: 30px;
        width: 140px!important;
    }}
    

    Adjust it as needed.

    Best regards,
    Andy

    Concerning the featured image in search results, this solution from the forum works for me – partly:

    https://kriesi.at/support/topic/add-featured-image-to-search-results/#post-249161

    My custom CSS for this are:

    .search-result-counter {
        height: 100px;
        padding: 0;
        width: 100px;
    }
    .search-result-counter img {
    	width: 100%;
    	height: 100%;
    	border-radius: 100px;
    }
    #top .template-search.content .entry-content-wrapper { 
    	padding-left: 120px; 
    	}

    But the featured image, shown in the search counter is distorted/stretched instead of being cropped:

    and then take a look please here:

    <span class="search-result-counter ">
    <img class="attachment- size- wp-post-image" width="1310" height="400" sizes="(max-width: 1310px) 100vw, 1310px" srcset="https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400.jpg 1310w, https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-300x92.jpg 300w, https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-768x235.jpg 768w, https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-1030x315.jpg 1030w, https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-705x215.jpg 705w, https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-450x137.jpg 450w" alt="slider_ambiente-mint_1310x400" src="https://xyz.de/studio/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400.jpg">
    </span>

    outputs obviously image sizes of:

    https://xyz.de/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400.jpg 1310w, 
    https://xyz.de/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-300x92.jpg 300w, 
    https://xyz.de/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-768x235.jpg 768w, 
    https://xyz.de/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-1030x315.jpg 1030w, 
    https://xyz.de/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-705x215.jpg 705w, 
    https://xyz.de/wp-content/uploads/sites/2/2016/05/slider_ambiente-mint_1310x400-450x137.jpg 450w

    I don’t know, where these image sizes, genereated there, are coming from.
    Here are all image sizes with my SimpleImageSizes-Plugin:

    But the custom CSS for the search-counter is 100x100px.
    I use the SimpleImageSizes-Plugin – but how should I “tell” the code snippet mentioned above, to use this 100x100px size for the image?

    Guess, this is the same problem, that someone had here – unfortunately not solved:

    The problem seems to be, that the featured image, that come to the search-counter are not properly rendered/cropped/made smaller …
    Interesting is, that in the search popup in the menu, the featured images are OK:

    Any idea please?
    Thank you.

    #638811

    In reply to: Header Menu Spacing

    Hi,

    try to add an !important to the code:

    .av_header_transparency .avia_mega_div {
        top: 70% !important;
    } 
    

    Best regards,
    Andy

Viewing 30 results - 95,191 through 95,220 (of 142,852 total)