Forum Replies Created

Viewing 30 posts - 17,641 through 17,670 (of 34,221 total)
  • Author
    Posts
  • in reply to: unable to fix the layout for partner/logo element #1172544

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home #av_section_6 > div > div > div > div > div.flex_column.avia-builder-el-51 > div > div.avia-content-slider-inner {
    	height: 135px !important; 
    }

    Best regards,
    Mike

    in reply to: How do I add in icons in a widget html #1172542

    Hi,
    Sorry for the late reply, in this thread a couple of solutions were provided, but it seems the css solution was the one used in the end.
    If this doesn’t help you then please explain what you are trying to achieve and link to an example so we can assist.

    Best regards,
    Mike

    in reply to: Tweaks #1172539

    Hey adGroupMarketing,
    Sorry for the late reply, I see from your screenshot that your browser width seems to be about 1024px, I also see that your mobile menu is active until about 988px, would you like the mobile menu to stay active until 1100px where the main menu will be all on one line?
    If so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 1100px) and (min-width: 768px) {
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: none !important; 
      }
    
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
          display: block !important; 
      }
    .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        top: 0;
        left: auto;
        right: 0;
        display: block !important; 
    }
    .responsive #top .av_mobile_menu_tablet #header_main_alternate {
        display: none !important; 
    }
    }
    @media only screen and (max-width: 1100px) and (min-width: 989px) {
    .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 150px !important;
        margin: 0;
    }
    }

    To have less space between sub-menu items, please try this css:

    #top #menu-supermarket-shop.av-subnav-menu > li > a {
        padding: 0px 5px 0px 5px !important; 
    }

    To make your sidebar widget bullet points a down arrow, please try this css:

    #top .widget_nav_menu ul ul li:before {
        content: "\2BC6" !important; 
    }

    The missing social icons was due to a change the WordPress v5.2.3 core files, I have applied the patch to your site so they now show.
    Please check these solutions and once you are satisfied we will look at your other issues, typically we ask that you create one thread for each issue because it makes it easier to address and for other users to find solutions, thank you for your understanding and patience.

    Best regards,
    Mike

    in reply to: Edit window just load #1172531

    Hi,
    Thanks for the login, I see on your live site you are using Enfold v3.4.7 with WordPress v5.3.2, which are not compatible.
    You will have to update via FTP, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    If you don’t feel comfortable doing this, please include FTP access in the Private Content area with a DropBox link to your theme files from Theme Forest and I will assist.

    As for your localhost issues it sounds like your PHP setting are too low, try these:
    PHP Time Limit: No limit
    PHP Memory Limit: 256M
    PHP Post Max Size: 50M
    PHP Max Upload Size: 20M
    but as we can’t investigate your localhost it will be hard to assist, perhaps we should update your live site.

    Best regards,
    Mike

    in reply to: Hoover Effect on a row element #1172527

    Hi,
    I believe you have this code in your functions.php:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= 'image url here';
        return $sub;
    }

    or something very similar, if you find it try removing it if it has the url I posted above.
    If you don’t find it, please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Gradients (buttons and text) #1172525

    Hi,
    Sorry, I get this error when I try to login:

    Unbekannter Benutzername. Überprüfe ihn noch einmal oder versuche es mit deiner E-Mail-Adresse.

    please check.

    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .avia_textblock h1 {
    	text-transform: uppercase !important; 
    	background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add direct link to an image in lightbox #1172462

    Hi,
    Sorry for the late reply, as I investigate your issue I was able to make a link to the image in the lightbox cover the column by adding this code to a code block element within your column:

    <style>
    a.fullwidth {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    </style>
    <a class="fullwidth" href="https://sensmaroc.nl/wp-content/uploads/2020/01/Sens-Maroc-Moroccan-traingle.jpg?iframe=true"></a>

    But this now creates a new issue, your image is too large and because it is in a iframe it can’t be sized with css. The iframe itself can be sized larger to fill the screen, but even then your image is too large, and if you choose to do that the other lightboxes will also be larger because they are all the same lightbox.
    So please take a look at your column link and decide if you want to make your image smaller or if you want to link to the image on another page.

    Best regards,
    Mike

    in reply to: Hoover Effect on a row element #1172444

    Hi,
    Oh, I see. One thing I notice is an image not from your domain that is timing out and trigging a “mixed content” warning, see url in the Private Content area. It looks like a staging site url from before you went live and is in your subtext function, probably in your functions.php
    Since this image never completes it is causing your site to just keep “loading”, please try correcting this.

    Best regards,
    Mike

    Hi,
    Oh, I see. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
    		var int = '';
    		function a() {
    			var isMobile	 = $('.av-burger-menu-main').css('display'),
    				htmlString   = $('#header_main .social_bookmarks:first').find('li a'),
    				mobileMenu   = $('.av-burger-overlay'),
    				socialString = [];
    	
    				if(isMobile == 'none') return;
    				if($('.burger-social').length) clearInterval(int);
    	
    				htmlString.each(function() {
    					var socialClass	= $(this).parent('li').attr('class'),
    							socialItems = $(this).wrap('<div class="'+ socialClass + ' av-active-burger-items burger-social"></div>').parent().unwrap();
    					socialString.push(socialItems);
    				});
    	
    				$(socialString).each(function() {
    					$(this).appendTo('#av-burger-menu-ul');
    				});
    		}
    	
    		$('#header').on('mousedown', '.av-main-nav-wrap', function() {
    			int = setInterval(function() {
    				a();
    			}, 500);
    		});
    	
    	})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');

    then add this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
    .burger-social {
        height: 30px;
        text-align: center;
    }
    .burger-social {
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        display: inline-block !important; 
    }
    .burger-social a {
        border-bottom: none;
        padding: 0;
    }
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Gradients (buttons and text) #1172437

    Hi,
    To add the gradient to your page title H1 heading you would use this css in your Enfold Theme Options > General Styling > Quick CSS field:

    #main h1.main-title a {
    	text-transform: uppercase !important; 
    	background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
    }

    To add the gradient to another element that is using the H1 heading such as a Special Heading element you would first add a custom class to the element such as “h1-gradient” and then use this css:

    #main .h1-gradient h1 {
    	text-transform: uppercase !important; 
    	background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
    	
    }

    Expected results:
    2020-01-11-123012
    If you have trouble targeting your H1 element please link to it and we will help identify the correct sector.

    Best regards,
    Mike

    in reply to: Lightbox not working #1172432

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Hover on Color of social media buttons #1172430

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Lightbox not working #1172427

    Hi,
    Thanks for the ftp access, I updated your header.php and now the product image opens in the lightbox.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hover on Color of social media buttons #1172424

    Hi,
    I see that the social icons are working correctly now, so the WordPress update must have been the solution.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Lightbox not working #1172421

    Hi,
    Thanks for the login, I see that your child theme is using an old header.php without the lightbox config in it, please try renaming it via ftp to “header.php.old” and copy the new header.php from the parent theme (enfold) to your child theme folder via ftp and then check.
    If this doesn’t solve I also notice that when setting the featured image for your product, there is an additional field that sets how the link will open that is not in a standard install:
    2020-01-11-110832
    this seems to be from a media library plugin, I wonder if it is overriding the standard function. Please try disabling this plugin to test.

    Best regards,
    Mike

    in reply to: Can't find a print.css file #1172414

    Hey RobbieDone,
    It seems that we have not included the print.css since v4.2.6, it is now included in the base.css around line 533
    /enfold/css/base.css

    If you would like to create your own custom styles for print you can add the media query: @media print{ your-style-here } to your custom stylesheet.

    Best regards,
    Mike

    in reply to: Bullet lists in text widget (sidebar right) do not appear #1172401

    Hey aebli,
    Thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .widget .textwidget ul {
        list-style: disc outside !important; 
        margin-left: 7px !important;
    }
    .widget .textwidget ul li {  
    	margin-left: 1.1em; 
    	padding:3px 0;
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: change the submission button text color of contact form #1172397

    Hey ryanmeighan,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home #av_section_1  input[value="Get Moving"].button {
    	color: #fff !important; 
    	border-color: #222 !important; 
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Problem Customising Styles #1172392

    Hey Lucian,
    I see that your Quick CSS code was to give the button a background color, but there was a small error in the code, I adjusted for you, and is now working, and your advanced styling option is giving the button text a hover color of black, which is working. So to add the border-radius I added it to your Quick CSS, please clear your browser cache and check and adjust to suit.

    Your css with the error:

    #top #wrap_all .av_seperator_big_border#header .av-menu-button-bordered > a {
        background-color: rgba(45, 189, 188, 1);
    } !important

    the corrected css:

    #top #wrap_all #header.av_seperator_big_border .av-menu-button-bordered > a {
        background-color: rgba(45, 189, 188, 1) !important;
    } 

    the corrected css with the border-radius:

    #top #wrap_all #header.av_seperator_big_border .av-menu-button-bordered > a {
        background-color: rgba(45, 189, 188, 1) !important;
        border-radius: 50px !important; 
    } 

    Best regards,
    Mike

    in reply to: Sonar Effect Colored #1172388

    Hey Guenter,
    Thank you for sharing, I also like your icon animation :)

    Best regards,
    Mike

    in reply to: Add text at the right of the logo in the header #1172387

    Hey mguillou5670,
    Adding the css from the instructions in the documentation corrects your issue, perhaps you forgot to add or there is an error in your css, such as a missing bracket, please check.

    /* CSS - Subtext on right */
    
    #top .logo,
    #top .logo a {
      overflow: visible;
    }
    
    /* Subtext styling */
    .logo .subtext h1 {
      font-size: 20px;
        font-weight: 600;
    }
    
    .logo .subtext {
      position: absolute;
        top: 50%;
        right: 0;
        transform: translate(120%, -50%);
        z-index: 999;
    }

    Please see the screenshot in Private Content area of my test of the css on your site. If you added the css to your Enfold Theme Options > General Styling > Quick CSS field, try copying all of the code and paste into WordPress > Customize > Additional CSS this has error checking and will let you know of any errors in the code.
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: aps folder – what is that #1172385

    Hey Susanne,
    Sorry, I have not seen this before, you could try opening the PHP files with a text editor to see if there are comments at the top of the files, typically you would find the author’s name and what program they are a part of there. It looks like it has a copy of your “wp-config.php” in it so I could be part of a backup.
    Was your WordPress installed automatically by your webhost with a one click installer? It could be left over from the installer, you could ask your webhost if this is true and if you can remove it.

    Best regards,
    Mike

    in reply to: Hover on Color of social media buttons #1172383

    Hey karel,
    I see that you are using WordPress v5.2.5, please try updating to v5.3.2
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Lightbox not working #1172381

    Hey karel,
    This is because your image is not opening in a lightbox, please ensure that the Enfold Theme Options > Lightbox Modal Window is enabled.
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    Hey geraldinetay27,
    Do you mean that the social icons do not show on mobile? This is the default action of Enfold, to show the social icons in your header on mobile Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Update caused big problems on pages #1172378

    Hi,
    Vielen Dank für das Feedback. Da dies Ihre Live-Site ist, die online bleiben muss, und Sie sagen, dass Änderungen die Site zum Absturz bringen, empfehle ich, bei Ihrem Webhost nachzusehen, ob Sie die Ein-Klick-Option für die Staging-Site haben. Dies ist in den meisten Fällen eine Option cPanels zum Erstellen eines Staging-Klons Ihrer Site, damit wir ihn testen können und Ihre Live-Site funktionsfähig bleibt. Sie können Ihren Webhost jederzeit fragen, ob Sie diese Option haben, da sie auf Ihrem Webhost möglicherweise anders aufgerufen wird.

    Hier sind einige Screenshots, wie es aussehen würde:
    staging-1
    staging-2

    — Translated with Google —

    Thank you for the feedback, since this is your live site that needs to stay online and you say making changes crashes the site, I recommend checking with your webhost to see if you have the one click staging site option, this is a option in most cPanels to create a staging clone of your site so we can test on it and your live site will stay up and running. You can always ask your webhost if you have this option as it may be called differently on your webhost.

    Here are some screenshots of what it would look like:
    staging-1
    staging-2

    Best regards,
    Mike

    in reply to: Add caption in lightbox under image in masonry gallery #1172377

    Hi,

    Sorry, you will not be able to add a link inside of the description of the masonry or gallery image because this creates a nested link and breaks the structure.

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Hoover Effect on a row element #1172374

    Hi,
    Glad to hear that this is working for you. I looked at your flip items and reloaded the page a few times, but the flip items flip quickly for me. Please see the screencast in Private Content area.

    Best regards,
    Mike

    in reply to: Set a link in a widget title? #1172372

    Hi,
    It looks like you have opened a new thread for this issue, let’s continue there.

    Best regards,
    Mike

Viewing 30 posts - 17,641 through 17,670 (of 34,221 total)