Forum Replies Created

Viewing 30 posts - 31,021 through 31,050 (of 34,550 total)
  • Author
    Posts
  • in reply to: Tab Section Not Responsive in Mobile View #870176

    Hi,
    Odd that it looks right on Android, do you believe this is only a iOS issue?
    Please see screenshot in Private Content area

    Best regards,
    Mike

    Hi,
    Is this what you had in mind?
    2017-10-29_130508

    #top nav .social_bookmarks {top: 20%!important; }

    Best regards,
    Mike

    in reply to: Sidebar Settings #870165

    Hi,
    If I understand correctly, you wanted the text to be centered, which it does, unless I’m looking at the wrong element.
    2017-10-29_125147

    Best regards,
    Mike

    in reply to: Theme v4.2 – Burger mobile menu overrides Mega Main Menu #870164

    Hey Jon,
    Are asking to not use the burger menu at all, and only the main menu?
    Your menu seems quite large, it seems that it would be hard to use on a mobile.

    Best regards,
    Mike

    in reply to: linking woocommerce category #870163

    Hey Bert2,
    It is hard to say without testing because it depends on if the two sites are using a muilti site install of WordPress, if so if should work.

    Best regards,
    Mike

    in reply to: Feld Produkt Eigenschaft Woocommerce #870162

    Hi,
    Woocommerce knows of this issue: “This issue happens when you have a custom attribute with the same name as a global attribute.”
    Please see if you have a custom attribute with the same name as a global attribute. Perhaps updating Woocommerce will also help. It looks like someone made a plugin to help correct the issue, read here for more info: https://github.com/woocommerce/woocommerce/issues/14824
    Perhaps checking at the Woocommerce support will offer another fix option.

    Best regards,
    Mike

    in reply to: Problem with form fields in mobile #870156

    Hi,
    I was not able to recreate the issue with Android and Chrome, do you believe this is only an issue with iOS?

    Best regards,
    Mike

    in reply to: Blog not displaying full content but only feature image #870147

    Hi,
    If I understand correctly, for your blog post element, on your blog page you are using this setting
    2017-10-29_114634
    when you create each post are you using the Layout Builder or the Default editor?
    If you have used the Layout Builder for the post the full post will not be displayed. The full post will be displayed when using the default editor. Instead you will need to create a custom excerpt when editing your post. If you do not see the excerpt field then click on “Screen Options” in the top right hand corner of your screen and check it to display.

    Best regards,
    Mike

    Hi,
    To do so would be some intensive code that is beyond what we can offer here, but you could hire a freelancer.

    Best regards,
    Mike

    Hi,

    @mrb1972
    thanks for sharing your solution with us.

    Best regards,
    Mike

    in reply to: Grid Row WPML layout bug #870129

    Hi,
    The difference from the two is that one is missing a container. I see that you have the plugin “Duplicate Post” installed, did you create the second page from scratch or by using a plugin? Creating a new page from scratch will most likely solve this issue. Please see screenshot in Private Content area

    Best regards,
    Mike

    in reply to: Masonry portfolio/gallery margins (left/right) #870115

    Hi,
    Try this code in the General Styling > Quick CSS field:

    .page-id-206 .avia-builder-el-2 {margin-left: -15px !important; margin-right: -15px !important; }

    Please clear site and browser cache.

    Best regards,
    Mike

    in reply to: image box #870107

    Hi,
    For the demo I took screenshots of each image,
    level 1 was 481×906
    level 2 was 972×447
    level 3 + 4 was 482×445
    but I’m sure you can use larger images with the same ratio.
    Let us know if this works for you, and if we can close this.

    Best regards,
    Mike

    in reply to: Increasing Font Size for tables #870100

    Hi,
    The reason why the table body didn’t middle align is that in you custom code you missed the first dot for the page ID.
    Please remove all of the code I gave you and use this new code that also gives the table header a blue background with white text, you can adjust to suit.

    .page-id-8145 td {font-size: 20px !important; vertical-align:middle!important; color: #666666!important; }
    .page-id-8145 th {font-size: 20px !important; vertical-align:middle!important; color: #fff!important; background-color: blue !important;}

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Text Glitch #870091

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Can't import Demo #870090

    Hi,
    When I tried to import I received the error: “Failed to load resource: the server responded with a status of 500 (Internal Server Error)” Try to contact your host to fix that error and that would probably fix the importing issue.
    I see your PHP Version is 5.3.24, version 7 is now recommend for the latest WordPress and Enfold, asking your host to update your PHP may correct the error.

    Best regards,
    Mike

    in reply to: Text Glitch #870084

    Hi,
    The open tag was in your cache, once I cleared it the post showed correctly. You may need to clear your browsers cache also.

    Best regards,
    Mike

    in reply to: Site name instead of logo #870081

    Hi,
    Please also include the url to your site.

    Best regards,
    Mike

    in reply to: Increasing Font Size for tables #870044

    Hi,
    Sorry, that was my error I forgot to add them:

    .page-id-8145 td, .page-id-8145 th {font-size: 26px !important; }

    With vertical alignment and color:

    .page-id-8145 td, .page-id-8145 th {font-size: 26px !important; vertical-align:middle!important; color: #666666!important; }

    You did want the table headers darker right?

    Best regards,
    Mike

    in reply to: Site name instead of logo #870043

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Turn off side bar for bb press #870042

    Hey codecreative,
    I couldn’t see your site as it is in maintenance, but I have seen a similar issue where the solution was adding a function like this:

    // Remove bbpress sidebar
    function remove_bbpress_sidebar( $layout ) {
    	if ( is_bbpress() ) {
    		$layout = 'fullsize';
    	}
    	return $layout;
    }
    add_filter( 'avf_sidebar_position', 'remove_bbpress_sidebar', 20 );

    Another option: https://kriesi.at/support/topic/remove-sidebar-from-bbpress-forum/#post-134451

    Best regards,
    Mike

    in reply to: Text Glitch #870039

    Hey finblue,
    There is an open strong tag on the page, probably from the element above.
    If you can’t find it, include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Increasing Font Size for tables #870038

    Hey eviang,
    Try this code in the General Styling > Quick CSS field:

    .page-id-8145 td {font-size: 26px !important; }

    this is meant to only work on the one page, you can remove the “.page-id-8145” to make it work on all pages.

    Best regards,
    Mike

    in reply to: Google Map Custom Marker size #870037

    Hey Slade,
    See this post: https://kriesi.at/support/topic/google-map-marker-custom-resize/#post-859588
    and be sure to read the bottom update:

    Let us know if that helps

    Best regards,
    Mike

    in reply to: Vollbild Slider Video defect #870035

    Hey bremerlloyd,
    Please clear any minifying plugin and caches because some php base classes have been updated.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Contact form field color after fill #870027

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Masonry portfolio/gallery margins (left/right) #870026

    Hey Massimo,
    Please include the url to the page in question so we can target the element and remove those margins.

    Best regards,
    Mike

    in reply to: Site name instead of logo #870024

    Hey Massimo,
    Please remove your logo in two places:
    Enfold Theme Options > Header > Transparency Logo
    Enfold Theme Options > Frontpage Settings > Logo
    Add this to your functions.php

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= get_bloginfo('name');
        return $sub;
    }

    then add this to your quick css:

    .logo > a > img { display: none !important; }

    and clear your cache

    Best regards,
    Mike

Viewing 30 posts - 31,021 through 31,050 (of 34,550 total)