Forum Replies Created

Viewing 30 posts - 13,801 through 13,830 (of 34,601 total)
  • Author
    Posts
  • in reply to: Help with grid row spacing #1318788

    Hi,
    Thank you for your patience and the link to your test page, for rounding the corners of the background images in your grid row cells it is possible like this:

    #main > .av-layout-grid-container > .flex_cell.av_one_half {
    	border-radius: 10px;
        background-size: cover !important;
    }

    but because it is a grid row you will not be able to have a space between the cells, so I recommend removing the background images and adding image elements inside of the grid row cells then set the border-radius like this:

    #main > .av-layout-grid-container > .flex_cell.av_one_half img {
    	border-radius: 10px;
    }

    now you will find that at mobile the images are not full-width and you still don’t have a space between the first two images, to correct try this:

    @media only screen and (max-width: 767px) { 
    	.responsive #top #wrap_all #av-layout-grid-1.av-flex-cells .no_margin {
    		padding: 0!important;
    	}
    	#top #wrap_all #av-layout-grid-1 > .avia-builder-el-first {
    	margin-bottom: 20px;
        }
    }
    

    linked below is the test page I created to work this out, please check and try this out.

    Best regards,
    Mike

    Hey bobfurgo,
    Thank you for your patience and the link to your site, try adding this script to the end of your functions.php file in Appearance ▸ Editor, it is for the horizontal gallery and counts the slides and adds a class to first and last ones, then hides the next and previous buttons on the first and last slide.

    function horizontal_gallery_remove_first_last_slideshow_arrows() { ?>
        <script>
    (function($){
      $(window).load(function(){
    var lis = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').length;
    var hgs = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap');
    var prev = $('.av-horizontal-gallery .av-horizontal-gallery-prev');
    var next = $('.av-horizontal-gallery .av-horizontal-gallery-next');
    
    $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').each(function(index){
        if(index<1)$(this).addClass('first');
        if(index>=lis-1)$(this).addClass('last');
    })
    $('.avia-slideshow-arrows a').click(function(){
    if (hgs.is('.first.av-active-gal-item')){
    	prev.css({'display' : 'none'});
    }else{
    	prev.css({'display' : 'block'});
    }
    if (hgs.is('.last.av-active-gal-item')){
    	next.css({'display' : 'none'});
    }else{
    	next.css({'display' : 'block'});
    }
    });
    	
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'horizontal_gallery_remove_first_last_slideshow_arrows');

    If you have any issues with it please check that you are not forcing the jQuery to load in the footer in the theme option Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer or with your caching plugin.

    Best regards,
    Mike

    in reply to: Checkboxes stretched #1318650

    Hi,
    Thank you for your patience, and the link to your site but I don’t believe that I’m seeing what you originally intended, perhaps you have changed the layout?
    Please see the screenshot in the Private Content area of what I’m seeing in step two, the radio buttons look at work correctly for me on Windows 10 in Chrome.
    As I recall with this plugin some of the styles have a lower specificity than what the Enfold form elements use, for example our rules begin with an ID #top and the Everest form builder doesn’t use any IDs, so if you have a rule that is being overwritten you could copy it to your custom css and add the ID #top to the beginning.

    Best regards,
    Mike

    Hi,
    Thank you for sharing your snippet, perhaps others will also find it helpful, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Woocommerce Image width #1318286

    Hi,
    Thanks for the feedback and the screenshots, please try this css:

    #top.single-product #main > .container_wrap_first.template-shop .single-product-main-image {
        width: 100%;
        float: none;
    }

    This also makes the product image full width, if you want it to stay at 33% similar to your screenshot, then remove the line width: 100%;
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can't remove padding/margin #1318284

    Hi,
    While it is true that many elements have margin & padding settings, what you are doing doesn’t have that option, for your headshot you are adding is plain image inside the text block element
    2021-08-25_001.jpg
    neither the text block element or the WP plain image have margin or padding settings, but even if they did it would not solve because the margin is coming from the paragraph tag [p] inside the text element, not the text element itself.
    2021-08-25_002.jpg

    For your new question, on the very large screen the color section’s vertical-align: middle is showing, to correct please use this css:

    #top.home #av_section_1.avia-section.av-minimum-height .container .content {
        vertical-align: bottom;
    }

    After applying the css, please clear your browser cache and check.

    So you have a color section with a background image with a column > text block > p > image that you want aligned to the bottom of your background image. The 3 snippets of css above achieve this, but you said that you may like to use this configuration elsewhere, so I recommend adding custom classes to these elements and the snippets and saving the block as a Template so it will be easier for you in the future.
    2021-08-25_003.jpg
    Please let us know if you need assistance adding the custom classes & adjusting the css, if you do please copy this section to a new test page, because creating a template saves the whole page not just this set of elements, and include an admin login in the Private Content area so we can adjust the custom classes and css to work together, then you can save as a template.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thank you, for the images with the borders please try this css:

    #main .av-magazine-thumbnail {
        border: 0px none;
    }

    I see other borders between the elements but I believe you want to retain these.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: mobile menu trap focus #1318108

    Hi,
    Thanks for the feedback, I will update you here when I hear back from the Dev Team, thank you for your patience.

    Best regards,
    Mike

    in reply to: mobile menu trap focus #1317984

    Hi,
    Thanks for the feedback and your patience, your explanation helped and I tried to modify the script you linked to be I was not fully successful and also felt the Dev Team should be brought into this, so I submitted this to them and will reply back when I hear from them. We are a world wide organization, so while you linked to info about being ADA compliant we will probably want to go with something broader like WCAG, I didn’t find a “trapped” spec in either and wonder if having the menu close once the user tabs out of the menu would also satisfy, can you link to the ADA spec that your accessibility review company is pointing to and if they also have a matching WCAG spec? Thank you.

    Best regards,
    Mike

    in reply to: 500 internal server error occured #1317848

    Hey Ayumi,
    Thank you for your patience and the link to your site, I was able to update your page by adding text and I saw no error, are you still having this issue? How can I recreate the error?

    Best regards,
    Mike

    Hey smiley789654123,
    Thank you for your patience and the link to your site, to change the background color to transparent and change the post date color to white, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main .main_color .avia-content-slider .slide-image {
    	background: transparent;
    }
    #main .main_color .avia-content-slider .slide-meta-time {
    	color: #fff;
    }

    but I didn’t see a border color on this element, do you mean a different border color?
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Matt,
    Thank you for your patience and the link to your site, when I view your site with Chrome on Windows 10 I see your logo, please see the screenshot in the Private Content area, perhaps since you first posted you found the solution.
    The screenshot you posted looks like the stylesheet didn’t load with the site, but I don’t see this when I check.
    Please let us know if this continues to be an issue for you and how we can reproduce the error you are seeing.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, you are seeing macos because inside the zip file is a directory called macos try extracting the zip file and deleting it and re-ziping with only the necessary files.

    Best regards,
    Mike

    in reply to: Woocommerce Payment checkout #1317835

    Hi,
    Glad to hear that you got this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Can't remove padding/margin #1317760

    Hi,
    Happy to help.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Woocommerce Payment checkout #1317755

    Hey mikeybabes68,
    Thank you for your patience, I tested your checkout on Windows 10 with Chrome and was able to check out with PayPal & cryto & agree to the website terms, please see the screenshot in the Private Content area.
    As for your image issue I was not able to login because the username is not registered, but I can see that you are using the parallax effect, so a couple of things are occurring for this effect the image is actually larger than what to see so the bottom frame scrolls over it and because it is set to “full stretch” the background-size is set to cover, meaning the width is what matters, it doesn’t matter the “size” of the image but the aspect based on the “width”.
    So for you /the-best-types-of-carabiners-in-2021/ page, your image is 1500px wide which on my desktop is showing correctly, but your image is also 1000px high but your div is only 368px high so it can not show the full hight.
    The height of the parallax div is 589px so you will need to adjust the aspect so the portion of the image you want to show fits in the 368px with 221px extra for the parallax effect. It’s basically the same for your homepage, try increasing the width and decreasing the height of your images to fit what you want to show in the “viewable” space.

    Best regards,
    Mike

    in reply to: mobile menu trap focus #1317751

    Hey sky19er,
    Thank you for your patience, I tried testing the mobile menu with the [Tab] key on our 2017 Demo with the dev tools at 768px. My understanding of the spec is that you should be able to [Tab] into the mobile menu and stay there until a link is [clicked] with the [enter] key. This worked correctly for me, please give this a try.
    So I don’t see that the linked solution is needed on our demo site, but if there is a conflict on your customer site preventing the default action then perhaps this would help, a quick look at the script seems that the fourth line is the target ID
    const modal = document.querySelector('#exampleModal'); // select the modal by it's id
    the ID of the mobile menu is av-burger-menu-ul so without testing this may be the solution.
    But I would recommend comparing your customer’s site with the demo to determine why they are not performing the same.

    Best regards,
    Mike

    in reply to: Mega Menu #1317747

    Hi,
    Thank you for your patience and for the login, it looks like a conflict with your Popup Maker plugin, when I disable it the mega menu option returns:
    2021-08-21_004.jpg

    Best regards,
    Mike

    in reply to: AV-Masonry does not show full picture of post #1317746

    Hey amollde,
    Thank you for your patience, can you please link to the page that you are working on, I tried to view your site but it seems to be under construction, so perhaps including admin login in the Private Content area will allow us to be of more assistance.
    Typically if you want an image size to not be cropped we recommend using the Simple Image Sizes plugin and then regenerate the image sizes and clearing your cache.
    Another way would be to add a function to your child theme functions.php, please see this post.

    Best regards,
    Mike

    in reply to: Woocommerce Image width #1317744

    Hi,
    Thank you for your patience and the link to your single product sample, as I examine it the description side of the page is already full width except for the 50px of padding, so to remove this padding please try this css:

    #top.single-product #main > .container_wrap_first.template-shop > .container {
    	padding: 0;
    }

    Please see the screenshot in the Private Content area to show what I’m seeing.

    Best regards,
    Mike

    in reply to: Contact Form #1317740

    Hey Ayşegül Ülkü,
    Thank you for your patience, the snippet above is for showing the page that the contact form in on, not for where the user came from, such as FB or Google. You would need to use a tracking script to find out where your users are coming from.
    But the Enfold Contact form has only basic functions and not a way to integrate with a tracking script, you will probably want to use the Contact Form 7 and one of it’s addons to achieve this.

    Best regards,
    Mike

    Hi,
    Thank you for your patience and sorry for the late reply, the login didn’t work for me but I did find the cause, at mobile the transform rule is overruled by this css for the parallax effect:

    .avia_mobile #top .av-parallax-section {
        z-index: 0;
        -webkit-transform: translate3d(0,0,0);

    So please try replacing your css with this:

    #main #section-width {
        max-width: 91%;
        left: 50%;
        position: relative;
        transform: translateX(-50%)!important;
    }

    After applying the css, please clear your browser cache and check.
    As for your logo image being blurry, I’m not sure that I’m seeing it, but my eyes are not that great, but below I linked to the current 300×159.png and the original 650×344.png try looking at both in your browser if you do see a difference you have two choices, you can download the original and resize it on your desktop manually preserving the image quantity and upload it to the exact location via FTP or your webhost file manager. This is often better than the WordPress image software for smaller images.
    Or you can go to the Enfold Theme Options ▸ Logo and enter the URL to the full size image below and save with the Save all changes button, Not the Upload button. This will then show the new image without modifing it.
    Enfold-Theme-Options-Logo-option.jpg

    Best regards,
    Mike

    in reply to: Tracking contact form with Google Analytics #1317624

    Hi,
    Glad to hear this helped and thanks for pointing out the error, I have posted the correction below for future readers.
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    add_filter('avf_contact_form_submit_button_attr','avia_add_submit_attributes_to_cf', 10, 3);
    function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
        if(is_page('500')){
      $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form one Send','Click/Touch','Footer']);\"";
        }
        if(is_page('400')){
      $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form two Send','Click/Touch','Footer']);\"";
        }
      return $att;
    }

    Best regards,
    Mike

    in reply to: Enfold: Center Small bar above Main Menu #1317481

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,

    @reaper_unique
    thanks for the link to your site but I don’t see any error in the browser console and the theme that is loading is Astra v3.6.8, not Enfold.
    If you are having trouble with Enfold v4.8.6.2 then please create a new thread and include an admin login in the Private Content area so we can be of more assistance since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.


    @onurkurtic
    I still do not see your error and your mobile menu seems to be working correctly, did you need further assistance or were you able to find the conflict?

    Best regards,
    Mike

    in reply to: Favicon not appearing #1317476

    Hi,
    Thank you for your patience and glad to hear this worked, I will submit a feature request to the dev team for this, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Cannot open/close accordion tabs #1317165

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Accordion element not showing text in the backend #1317162

    Hi,
    I still see that if the child theme is disabled and the Enfold theme is enabled the problem is solved, strange, I will ask the rest of the team if they have any ideas.

    Best regards,
    Mike

Viewing 30 posts - 13,801 through 13,830 (of 34,601 total)