Forum Replies Created

Viewing 30 posts - 11,101 through 11,130 (of 34,988 total)
  • Author
    Posts
  • in reply to: Input text fields wrong color on mobile #1361018

    Hi,
    Thanks for the screenshot and link to your page, I checked with my Android phone and the fields are black, I don’t have an iPhone.
    Try this css:

     #top .main_color #mainContainer #adultCount,
     #top .main_color #mainContainer #kidsCount {
    	opacity: 1 !important;
        color: #000 !important;
    }

    Then clear your browser cache and any cache plugin, and check.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Breadcrumbs #1361017

    Hey letsrocc15,
    Thanks for your question, I only found one page with the title container and breadcrumbs /privacy-policy/
    assuming that all of your other pages have the setting Title Bar Settings ▸ Default Setting then please check Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs to ensure it is enabled:
    2022-08-07_007.jpg
    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: Product gallery thumbs look blurry #1361011

    Hey nasi,
    Thank you for your patience and for the link to your site. I installed the Simple Image Sizes plugin for you to demonstrate that your woocommerce_gallery_thumbnail size is 100px, yet it is showing at 175px so it is blurry:
    2022-08-07_005.jpg
    Try going to WordPress ▸ Settings ▸ Media ▸ Image sizes and change this to 180px and then regenerate the thumbnails
    2022-08-07_006.jpg
    and then clear your browser cache and check again.

    Best regards,
    Mike

    in reply to: Looking for opinions on using Categories and Tags #1361010

    Hi,
    Thank you for your question, I would recommend using “Next Step” as a category rather than a tag.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I have reviewed your page source code and used the validator that you linked to, but found no frameborder attribute.
    Please explain further where this can be found, if you have not already solved it.

    Best regards,
    Mike

    Hi,
    Glad to hear this helped, the social icons are not designed to be seen on mobile portrait because as you pointed out “it would be too crowded” this is done with css if anyone wants to show them crowded
    unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Animate Team Member Content Element Image #1361002

    Hi,
    Thanks for your feedback, for future readers I would point out that in this situation we have two team member elements below the “fold” (out of view) on the page, each team member element has quite a lot of text, so animating the column or the element will not be satisfactory, it will need to be the team member image.
    We also want each team member image to animate when it is in the middle of the screen, “each” meaning that not all at the same time.
    I add this background because I don’t believe that this user wants any images or links of the solution posted.
    Ok, so try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_waypoint_animation_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
     $('.team-img-container img').each( function(index, element){
            $(element).waypoint(function(direction) {
                	if (direction === 'down') {
                    $(element).addClass('waypoint-animation');
                	}
      }, {
        offset: '50%'
      });
            });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_waypoint_animation_script');

    and this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field instead:

    .team-img-container img {
    	transform: scale(.1)
    }
    .team-img-container .waypoint-animation {
    	animation: growin 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes growin {
      from {transform: scale(.1)}
      to {transform: scale(1)}
    }

    then check again.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Animate Team Member Content Element Image #1360963

    Hi,
    Please note that your team image is down the page a bit, so the animation may be happening before you scroll down.
    Please try scrolling down to the image and then refreshing the page.

    Best regards,
    Mike

    Hi,.
    Glad to hear this helped, please include an admin login in the Private Content area so we can help place the burger menu to the right for your mobile device.

    Best regards,
    Mike

    in reply to: Theme Conflict with Hotel Booking lite plugin #1360942

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

    .datepick-month{
        width: 435px;
    }

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

    Best regards,
    Mike

    Hi,
    Thanks for the link to your site, for mobile portrait this css is giving the burger menu a white background color:
    2022-08-06_001.jpg
    I linked to the file below, it looks like the cached version of your child theme stylesheet.
    Please try removing it or adding this to override it:

    @media only screen and (max-width: 767px) {
        #top .header_color .av-hamburger-inner, #top .header_color .av-hamburger-inner::before, #top .header_color .av-hamburger-inner::after {
        background-color: #808080;
        }
    }

    Another possibility is that this white background color was chosen in the Enfold Theme Options ▸ Advanced Styling or in the Enfold Theme Options ▸ General Styling
    but I was not able to reproduce it on my test site, I did test Ismael’s css on your site by injecting it and it does work, please give it a try.

    Best regards,
    Mike

    in reply to: Animate Team Member Content Element Image #1360911

    Hi,
    Thanks for your patience, please try this css to make your team member image grow on page load.

    .team-img-container img {
    	animation: growin 4s;
    	animation-fill-mode: forwards;
    }
    @keyframes growin {
      from {transform: scale(.1)}
      to {transform: scale(1)}
    }

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

    Best regards,
    Mike

    in reply to: change layout search results #1360614

    Hi,
    To add the loop-search.php file to your child theme create a new folder called “includes” in the child theme directory and create a copy of the “loop-search.php” file inside of it.
    to hide the pagination please try this css:

    .template-search .pagination {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Accessibility for Visually Impaired #1360611

    Hi,
    Thanks for the feedback, assuming that you have added the title to each menu item:
    2022-08-04_001.jpg
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_aria_label_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $('#avia-menu li').each(function() {
        $(this).find('a').attr('aria-label', $(this).find('a').attr('title'));
      }); 
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_aria_label_script');

    and then test with your “Jaws”

    Best regards,
    Mike

    in reply to: Custom location breadcrumb #1360603

    Hi,
    Thanks for the feedback, the css above should have replaced the text “home” with the house icon, this part of the css above makes the text “home” font size zero:

    
    .breadcrumb-trail a.trail-begin {
    	font-size: 0 !important; 
    }

    if you didn’t add this part because you want to see the “home” then add the color to it like this:

    
    .breadcrumb-trail a.trail-begin {
    	 color: #fff;
    }

    if this doesn’t help please link to your page so we can check.

    Best regards,
    Mike

    in reply to: WPML Language Switch Header to the left of burger menu #1360601

    Hi,
    Glad to hear that you have 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

    Hi,
    Thank you for your patience, I found that the two sub-menu items #einfamilienhaeuser & #wohnanlage are triggering as the active menu item when the #informationen section is in view, I created a test menu without these two items and the menu works correctly, please try enabling the test menu to test.
    I checked your page but couldn’t find duplicates for #einfamilienhaeuser & #wohnanlage, so I’m not sure what could be causing this.
    You could try this javascript solution to correct the highlighting based on the scroll, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function ($) { 
    	setTimeout(function(){
    	$("#menu-item-762").removeClass('current-menu-item');
    	},300);
      $(window).scroll(function() {    
          var scroll = $(window).scrollTop();
          if (scroll > 500) {
              $("#menu-item-783").addClass('current-menu-item');
          } else {}
          if (scroll < 1400) {
              $("#menu-item-762").removeClass('current-menu-item');
          } else {}
          if (scroll > 1400) {
              $("#menu-item-783").removeClass('current-menu-item');
          } else {}
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    and see if this helps

    Best regards,
    Mike

    in reply to: Headline with Minus-padding left in mobile view #1360032

    Hi,
    Thanks for your patience and screenshot, but unfortunately I can not find the page on your site for it, the link seems to be a 404 error now.
    Please link to the current page with the issue and perhaps a new screenshot so we can examine it.

    Best regards,
    Mike

    in reply to: Remove gray frames top and bottom #1360031

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

    #top .content .flex_column .widget_nav_menu li {
        border-style: none;
    }

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

    Best regards,
    Mike

    in reply to: Hamburger menu not working on mobile #1360027

    Hi,
    Glad we were able to help, and we are a part of your team 🙂
    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: Avia builder not opening #1360025

    Hi,
    Glad to hear that you have 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: Remove gray frames top and bottom #1360022

    Hey schweg33,
    To remove the line above and below the widget you linked to please try this css:

    #top .content .flex_column .widget_nav_menu li:first-child {
        border-style: none;
    }

    if this doesn’t work for all pages that are intended, please explain further and link to them so we can help adjust.

    Best regards,
    Mike

    in reply to: image over image effect options #1360020

    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: Fixed corner transparent background #1360019

    Hi,
    Thanks for your question, for the background image on your page /faq/ you can change the background size of it on mobile devices with this css:

    @media only screen and (max-width: 770px) { 
    #main > .main_color {
      background-size: 50%;
    }
    }

    After applying the css, please clear your browser cache and check and let us know of any pages this is not working for you, so we can investigate.

    Best regards,
    Mike

    in reply to: display only on desktop #1360017

    Hey schweg33,
    Thanks for your question, you could try wrapping your css in a media query like this:

    @media only screen and (min-width: 1440px) {
    .page-id-1090 #socket {
    position: fixed;
    bottom: 0;
    width: 100%;
    } 
    }

    Best regards,
    Mike

    in reply to: hide top title #1360015

    Hi,
    Glad Rikard could 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,
    Very good, unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Newsletter Tools #1360002

    Hi,
    Very good, 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: Newsletter Tools #1359999

    Hi,
    Thanks for the feedback, unfortunately, we don’t have a recommended list of plugins.

    Best regards,
    Mike

    in reply to: image over image effect options #1359997

    Hi,
    Thanks for the feedback, my solution above will work for as many images as you like.
    I have tested by adding numbers to the hover image that you posted earlier to demonstrate that the correct image is swapped in the Swap Images on Hover With Closest Hidden Image solution:
    2022-07-31_001.jpg
    Please try this and if you have further trouble with the solution Please include an admin login in the Private Content area so we can assist.

    Best regards,
    Mike

Viewing 30 posts - 11,101 through 11,130 (of 34,988 total)