Forum Replies Created

Viewing 30 posts - 7,471 through 7,500 (of 34,890 total)
  • Author
    Posts
  • in reply to: Masonry without date #1406951

    Hey svenjaschumacher,
    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: Heater overlays Burger menu #1406950

    Hi,
    Thanks for the screenshot, I couldn’t find the page so I tested a different one.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 58px !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: How to make changes in header in scrolling mode #1406948

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #header #header_meta {
        z-index: 1;
    }

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

    Best regards,
    Mike

    in reply to: font color for a portfolio grid #1406947

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_modern-blog #top #main .post-entry .blog-categories {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: H3 tags in the footer #1406946

    Hi,
    Thanks, but I get the error below

    Best regards,
    Mike

    Hi,
    Oh I see, unfortunately this is not with tabs, please try using the accordion element.

    Best regards,
    Mike

    in reply to: font color for a portfolio grid #1406937

    Hi,
    Thanks for the feedback but your link leads to a 404 page, please check.
    As I understand you want to hide the date and categories, correct?

    Best regards,
    Mike

    in reply to: Gradient transparent permanent header #1406935

    Hi,
    Thanks for the feedback but I don’t think this is possible.

    Best regards,
    Mike

    Hi,
    Sorry, I don’t see the admin login to your site in your last post, please try adding it again so we can check your site.

    Best regards,
    Mike

    in reply to: LOGO TESTATA PER MOBILE #1406921

    Hi,
    Try using this function instead with the same css:

    add_action( 'woocommerce_single_product_summary', 'add_product_shipping_attribute', 25 );
    function add_product_shipping_attribute(){
        global $product;
        $taxonomies = array('express');
        foreach($taxonomies as $taxonomy ){
            $value = $product->get_attribute( $taxonomy );
            if ( $value ) {
                $attribute_label_name = wc_attribute_label( $taxonomy );
    			echo '<br/><p class="highlight">Express Shipping:' . $value . '</p>';
            }
        }
    }

    Best regards,
    Mike

    in reply to: column element Mobile View #1406920

    Hi,
    Thanks for the feedback, try this css:

    @media only screen and (max-width: 989px) { 
    	.responsive #top.home #wrap_all #service .flex_column_table .flex_column {
    	transform: none!important;
    	margin-bottom: 20px!important;
    	}
    }

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

    Best regards,
    Mike

    Hi,
    The css in my last post is only for the font size, the other css should also remain as it is not the same as the first post.
    The max-width of 1024 tells the css to not work above 1024px, so it doesn’t apply for the headings since you do want it to work for 1024px and above.
    Did you try this and adjust the font size to suit your needs, is it working for you?

    Best regards,
    Mike

    in reply to: H3 tags in the footer #1406814

    Hi,
    Please see below

    Best regards,
    Mike

    in reply to: When updatign emoji's get lost #1406811

    Hi,
    I tested one of your pages in Firefox and the emojis didn’t show with the ALB text element was edited, but I was not able to reproduce this on our test site so this may be related to one of your plugins, please try creating a staging site to test on, so your live site will not be affected, most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen.

    Best regards,
    Mike

    in reply to: page without scrolling #1406804

    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: How to deactivate "creativework" schema.org #1406803

    Hi,
    I have submitted this to the Dev Team feature request for their review.

    Best regards,
    Mike

    in reply to: LOGO TESTATA PER MOBILE #1406801

    Hi,
    Do you plan on creating descriptions? If not where do you want this to show? Perhaps a mockup of what you would like to see would help.

    Best regards,
    Mike

    in reply to: Add Border to Circle Images #1406800

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: column element Mobile View #1406781

    Hi,
    Please check the column padding, you have large padding set for all devices:
    Enfold_Support_2030.jpeg
    try changing this to the desktop icon and set a smaller value for the mobile icon, similar you how you corrected the margin above.

    Best regards,
    Mike

    Hi,
    Glad this helped, the parallax allows the image to also move as the foreground moves, scroll doesn’t. The height of the parallax image doesn’t really alow you to see the effect very well, it works better when the image is bigger.
    The media query max-width is pixel width of the screen size.
    For the masonry headings this is the css, adjust to suit:

    #top #main .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
        font-size: 1.5em;
    }

    Best regards,
    Mike

    in reply to: Admin-Seite wählt Hauptmenü nicht an #1406777

    Hi,
    Sorry, I don’t understand what you are trying to do.
    To have a notification bar with 3 buttons you should not add the code above to hide the notification bar.

    Best regards,
    Mike

    Hi,
    In the Accordion element use the Behavior option Multiple toggles open allowed (Toggle Mode)
    Enfold_Support_2028.jpeg

    Best regards,
    Mike

    in reply to: LOGO TESTATA PER MOBILE #1406773

    Hi,
    To add a class “highlight” to the element so you can apply some css for a background color change the function above to this:

    add_action( 'woocommerce_single_product_summary', 'add_product_shipping_attribute', 25 );
    function add_product_shipping_attribute(){
        global $product;
        $taxonomies = array('express');
        foreach($taxonomies as $taxonomy ){
            $value = $product->get_attribute( $taxonomy );
            if ( $value ) {
                $attribute_label_name = wc_attribute_label( $taxonomy );
    			echo '<p class="highlight">Express Shipping:' . $value . '</p>';
            }
        }
    }

    Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .single-product-summary .highlight {
    	background-color: yellow;
    	display: inline;
    }

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

    Best regards,
    Mike

    Hi,
    Yes, please include an admin login in the Private Content area so we can check your code snippet and the element in the backend so we can see why your results are not the same as my test page.

    Best regards,
    Mike

    in reply to: Scroll Down Arrow for Full-width Easy Slider #1406767

    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: Cross copying enfold demo blocks/pages #1406730

    Hey QCConcepts,
    Please use the Avia Layout Builder Debugger to copy the Advanced Layout Builder shortcodes from one page/site to another.

    Best regards,
    Mike

    in reply to: Burger menu – sub menu overlap #1406728

    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: Grid Row Tablet View #1406727

    Hi,
    Please use this screen resolution tool and tell us what your iPad screen size is for landscape in the images above as there are a few different iPad sizes. Also tell us what version and iOS your iPad and Safari is. There are some older versions that have quirks with parallax.

    Best regards,
    Mike

    in reply to: Accordion, Portfolio, Heading #1406726

    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: Footer Widget #1406694

    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

Viewing 30 posts - 7,471 through 7,500 (of 34,890 total)