Forum Replies Created

Viewing 30 posts - 5,761 through 5,790 (of 35,209 total)
  • Author
    Posts
  • in reply to: Duplicated Burger Icon and more padding to each nav item #1421828

    Hi,
    I can get the menu items to be in one row starting at 768px with this css:

    @media only screen and (min-width: 768px) { 
    	#header_main_alternate > .container {
    		margin: auto;
    		padding: 0;
    	}
    	#top #header .av-main-nav > li {
        padding: 0;
        }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    but not spaced equally across the whole width of the navigation.
    After applying the css, please clear your browser cache and check.
    the expected results:
    Enfold_Support_3626.jpeg

    Best regards,
    Mike

    in reply to: Add area image to shop pages #1421826

    Hi,
    Please see the explanation here.
    I believe that your “Gallery page” is actually the woocommerce shop page so to add the image and shortcode breadcrumb there you will need to edit the new function that I added above.
    You would add is_shop() I did this for you, please check.

    Best regards,
    Mike

    in reply to: 4 content boxes not working corectly #1421824

    Hi,
    It looks the same as before to me:
    Enfold_Support_3622.jpeg
    Enfold_Support_3624.jpeg

    Best regards,
    Mike

    in reply to: Mega Menu only Vertical #1421817

    Hi,
    On your start page you are using a fullwidth submenu, this can not display a maga menu like the main menu on your other pages.

    Best regards,
    Mike

    in reply to: Duplicated Burger Icon and more padding to each nav item #1421816

    Hey jamesbarrell,
    For your mobile menu, it looks correct up to 767px:
    Enfold_Support_3616.jpeg
    but at 768px it looks like you have some custom css that adds a burger menu to the left of the logo:
    Enfold_Support_3618.jpeg
    so please find this custom css and remove it:

    @media only screen and (max-width: 1366px){
    nav.main_menu {
        display: block !important;
    }
    }

    that should fix it to look like this:
    Enfold_Support_3620.jpeg

    Best regards,
    Mike

    in reply to: Add area image to shop pages #1421815

    Hi,
    I believe this was another thread and I just did it, please check the link below.
    If this is not what you mean, please link directly to the page, and please explain in detail.

    Best regards,
    Mike

    in reply to: No current color in main menu when open blog post #1421813

    Hi,
    I believe Nikko made the chage at Enfold Theme Options ▸ Theme Options ▸ Where Do You Want To Display The Blog
    I believe the image is added by your custom function in your child theme functions.php:

    function add_custom_header_image() {
    	if ( is_single() || is_archive() ) { ?>
        	<div class="single-header-image"><br><br></div>
    		<div class="breadcrumbrow" style="background-color: #f8f8f8;"><div class="container" style="padding-top:3px;">
    					<?php echo do_shortcode('[av_breadcrumbs]'); ?></div></div>
    <?php }
    }
    add_action( 'ava_after_main_title', 'add_custom_header_image', 10 );

    To show the image and breadcrumb in the above function on the blog page you would add !is_front_page() && is_home()
    like this:

    
    function add_custom_header_image() {
    	if ( is_single() || is_archive() || !is_front_page() && is_home() ) { ?>
        	<div class="single-header-image"><br><br></div>
    		<div class="breadcrumbrow" style="background-color: #f8f8f8;"><div class="container" style="padding-top:3px;">
    					<?php echo do_shortcode('[av_breadcrumbs]'); ?></div></div>
    <?php }
    }
    add_action( 'ava_after_main_title', 'add_custom_header_image', 10 );

    I did this for you, please clear your browser cache and check the blog page

    Best regards,
    Mike

    in reply to: Different widths for different elements on pages? #1421812

    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: Adding a CTA-Button to the Fullwidth Slideshow #1421811

    Hi,
    Glad Ismael 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

    in reply to: 4 content boxes not working corectly #1421810

    Hi,
    Your screenshot is of the new text element with no div tags, so I’m not sure what you are referring to with this screenshot.

    Best regards,
    Mike

    in reply to: Add area image to shop pages #1421809

    Hi,
    Thank you for the link to your site, I added this function in your child theme functions.php:

    function add_custom_header_image_to_products() {
    	if ( is_product() ) { ?>
        	<div class="single-header-image"><br><br></div>
    		<div class="breadcrumbrow" style="background-color: #f8f8f8;"><div class="container" style="padding-top:3px;">
    					<?php echo do_shortcode('[av_breadcrumbs]'); ?></div></div>
    <?php }
    }
    add_action( 'woocommerce_before_main_content', 'add_custom_header_image_to_products', 10 );

    Please check the product page linked below.

    Best regards,
    Mike

    in reply to: Mouse Hower effect #1421804

    Hi,
    Thank you for the link to your site, I added the required custom class to your masonry element:
    Enfold_Support_3608.jpeg
    I didn’t find the required css on your site, so I added it to WordPress ▸ Customize ▸ Additional CSS
    and now for mobile it seems to be working:
    Enfold_Support_3610.jpeg

    Best regards,
    Mike

    in reply to: Hamburger menu not supported for iOS 12.5.7 #1421801

    Hi,
    Oh I see, it is for an older version.

    Best regards,
    Mike

    in reply to: Different widths for different elements on pages? #1421800

    Hi,
    Thanks for the screenshots, it looks like the page you want to be 960px is the blog page, and I assume other pages, so I recommend settings the site content width to 960px at Enfold Theme Options ▸ General Layout ▸ Dimensions ▸ Content | Sidebar Ratio.
    Then it looks like a single post is the page you want to be 720px, I would achieve this will css like trying this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-post .fullsize .template-blog .post .entry-content-wrapper {
    	  max-width: 720px;
    }
    #top.single-post .av-content-full > .related_posts {
    	max-width: 720px;
    }
    #top.single-post .av-content-full > .comment-entry {
    	max-width: 720px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    This css assumes that the single post is created with the default editor, and your settings are similar to my demo site, unfortunately there are so many settings that to give to an exact solution I will need to see your page. You could include a admin login in the Private Content area below, or we could wait until your site is live.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, I checked your blog page with Safari Responsive Design Mode emulating a iPhone in portrait mode, but I was able to scroll fine, I also checked on my Android phone with no issues, unfortunately I don’t have a iPhone to test with, if you are still experiencing this issue please tell us which model of iPhone you are using and we will see if we can reproduce this error. Perhaps the version you are using is not using the latest Safari? On my Mac I have v16.6, but the Desktop Safari and mobile version don’t always behave the same.

    Best regards,
    Mike

    in reply to: Alternative main menu #1421787

    Hi,
    Go to your menus and hover over the “delete menu” and you should see a browser tool tip for the URL, in the URL you should see the menu ID like this screenshot that shows menu=12
    Enfold_Support_3602.jpeg

    Best regards,
    Mike

    in reply to: Margins unmanageable: code somewhere ? #1421786

    Hi,
    Glad to hear that you have solved most of the issues, typically the elements have a spacing options for each screen size as icons, similar to this:
    Enfold_Support_3600.jpeg
    each element is a little different so it depends on the element.
    What is the current element that you are having issues with?

    Best regards,
    Mike

    in reply to: Hamburger menu not supported for iOS 12.5.7 #1421785

    Hi,
    Glad Guenni007 could help, thank you Guenni007, bbarasa did this help you?

    Best regards,
    Mike

    in reply to: Managing margins for responsive purpose #1421784

    Hi,
    Glad Guenni007 could help, thank you Guenni007, HulaSlim did this help you?

    Best regards,
    Mike

    in reply to: Mouse Hower effect #1421782

    Hi,
    Thank you for helping Guenni007, Tim please include an admin login in the Private Content area and a direct link to the page in the screenshot so we can check why this is not working for you.

    Best regards,
    Mike

    in reply to: Set masonry overlay color #1421781

    Hi,
    I believe the category class is added to the masonry so you could set the css color via this class. I don’t think that you can add a ACF field to the Masonry sorting options.
    Pehaps an expert with ACF has a way to do this, but it’s beyond our abilities here.
    I recommend adding css to set the color via the category class, if you need some help with this please link to your example page and let us know what colors you want for each category.

    Best regards,
    Mike

    in reply to: contact-field #1421780

    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: Headlines on mobile phones #1421779

    Hi,
    Glad we were able to help, I will look at your other issue, it looks complicated so it may take some time. 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: Add area image to shop pages #1421772

    Hey Sebastian,
    Try this solution.

    Best regards,
    Mike

    in reply to: Headlines on mobile phones #1421771

    Hi,
    On the page that you linked to, “Schulmaterialien” is an H1 tag and your CSS is targeting H2 tags, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field instead:

    @media only screen and (max-width: 767px) {
      #top #wrap_all #main .header_color h1,
      #top #wrap_all #main .main_color h1,
      #top #wrap_all #main .alternate_color h1 {
        font-size: 24px;
      }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Cannot get demo content to upload #1421770

    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

    in reply to: 4 content boxes not working corectly #1421769

    Hi,
    Thanks for the link to your page, it looks correct now so you must have sorted it out.
    I see that your text elements have div tags when you check with the “text” tab in the builder, if you add or edit the content in the “visual” tab of the text element editor, it is possible to accidentally remove a div tag and break the layout. Please try to edit your pages in the “text” tab that shows the code so you don’t accidentally remove these. Or you could remove the correct opening and closing div tags, but this may be a lot of work. These could have been added in error if you copy and paste content into the “visual” tab.

    Best regards,
    Mike

    in reply to: Alternative main menu #1421767

    Hi,
    Try this thread, if you have trouble setting it up please include an admin login in the Private Content area and explain which page you want which menu to show on so we can examine.

    Best regards,
    Mike

    in reply to: images not visible #1421766

    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

    Hey Tina,
    Thanks for your question, by the sound of “Video outside the viewport” I was thinking that at mobile the video was partly off the page, I checked your videos at the mobile size but they all showed in the pages correctly. Then I found this thread from just a couple of month ago that shed some light on it.

    If you want a video to be counted, it basically needs to be in the initial viewport, the video is embedded way down the page in the example you have given.
    So it wouldn’t really have the video indexed as apart of the page.

    I see that you videos are also near the bottom of the page, or “outside the initial viewport”, so to correct you will need to place the videos at the top of your page.
    Right now you have a image that looks like a video that links to a lower part of the page, try swaping this out for a real video. But since you have many videos on your page, only one will get indexed, do you may also need to make a new page for each video, so it can be at the top.
    I hope this helps.

    Best regards,
    Mike

Viewing 30 posts - 5,761 through 5,790 (of 35,209 total)