Forum Replies Created

Viewing 30 posts - 14,131 through 14,160 (of 35,007 total)
  • Author
    Posts
  • Hey Jasmer,
    Thank you for your patience and for the screencast, for the Headline Rotator please try this css in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 767px) { 
    	#top.home .av-rotator-container {
    		min-height: 62px;
    	}
    }

    For your logo on desktop to not fade try this css:

    .avia_transform #top.home .avia-image-container.av-small-hide.av-mini-hide a:hover .image-overlay {
        opacity: 0 !important;
    }

    For your logo on desktop to not grow so much try this css:

    #top.home #main .avia-image-container.av-small-hide.av-mini-hide.av-hover-grow .avia-image-overlay-wrap:hover {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    this transform scale is the same as the lower images but it seems like more to me, perhaps because the logo image is larger, so you can try different scales to find the one you like, such as 1.02
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Contact Form not working #1320532

    Hi,
    Thank you for your patience, I took a look at your /german-kitchen-dubai-home/contact-us/ page but your form title seems to be correct, were you able to sort this out?
    2021-09-11_002.png

    Best regards,
    Mike

    in reply to: Form Validation Captcha Code Snippets for Enfold #1320531

    Hey williamsmedia,
    Thank you for your patience and the link to your page. I assume that when you say you want a form validation for your custom form snippet you mean that you want the form to not be submited unless all of the fields are correct?
    This function would be done by a script, but in examining your page source code I don’t see a script added to the code block.
    So if you have a script to add to the code block and it is causing an error when you add it then it most likely needs to be added between <script> tags inside the code block like this:
    2021-09-11_001.png
    If this doesn’t help then try posting a link to your entire script and form code in a plain text document (.txt) and link in the Private Content area below so I can test or try including an admin login in the Private Content area so I can examine your test page.

    Best regards,
    Mike

    Hi,
    Ok, we will leave this open to hear back from you after your test.

    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,
    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

    Hey zoltom,
    Thank you for your patience and for your explanation. Try adding the filter button by adding this code to the end of your functions.php file in Appearance ▸ Editor:

    add_action('woocommerce_before_shop_loop', 'filter_button_before_shop_loop');
    function filter_button_before_shop_loop() {
    	if(is_shop()) {
    		echo do_shortcode("[av_button label='FILTERS' icon_select='no' icon='ue800' font='entypo-fontello' link='manually,http://' link_target='' size='small' position='left' label_display='' title_attr='' color_options='color_options_advanced' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='custom' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#0a0a0a' btn_color_bg_hover='custom' btn_custom_bg_hover='#444444' btn_color_font='white' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' id='shopknop' custom_class='' template_class='' av_uid='' sc_version='1.0' admin_preview_bg='']");
    	}
    }

    You can replace the button shortcode with yours from the screenshot, or try this as-is to test.

    Best regards,
    Mike

    in reply to: New licens on an old site. #1320390

    Hi,
    From your screenshot the error message says that your email and user name were not accessed, so it seems that you didn’t enter the correct information, you need to use all of your new license information from your account that you created and none of the information from the old license.

    Best regards,
    Mike

    in reply to: New licens on an old site. #1319970

    Hey Per,
    Thank you for your patience, please see our Token documentation and the Troubleshooting section at the end.
    Also check that you have allowed the correct specific permissions to verify the purchase in the token, this link should take you to a screenshot.

    Best regards,
    Mike

    in reply to: Add an Icon to a Button Styled Menu Item #1319904

    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: Essential / Default Images Sizes in Media Archive #1319902

    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: Blog Post Excerpt Font size and Line-hight #1319900

    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: Blog Post Excerpt Font size and Line-hight #1319868

    Hi,
    Glad this works for you, if it was written differently the font change may also affect the post title which you didn’t include in your specification. Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Menue Reihenfolge dreht sich ungewollt um #1319865

    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: Amazon Icon is showing Pencil Icon? #1319862

    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 your patience and the link to your site, for the checkout page the input fields seem to be using the font “Helvetica Neue” at 12px so I tried matching it for this solution, feel free to adjust to suit.
    I added this to your Quick CSS field:

    #top.woocommerce-checkout .select2-results__option[aria-selected], 
    #top.woocommerce-checkout .select2-results__option[data-selected],
    #top.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
        font-family: "Helvetica Neue";
        background-color: #f8f8f8;
    }
    #top.woocommerce-checkout .select2-container--default .select2-selection--single,
    #top.woocommerce-checkout .select2-dropdown {
        background-color: #f8f8f8;
        border: 0px solid #f8f8f8;
    }

    this is the result:
    2021-09-05_008.png
    For your order received page I assumed that you want “GRACIAS. TU PEDIDO HA SIDO RECIBIDO.” to match The H2 heading in the next section below “DETALLES DEL PEDIDO” so this css does that:

    #top.woocommerce-order-received .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    	    font-size: 28px;
    	    font-family: "lora";
    	    color: #696969;
    	    text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
    }

    the result:
    2021-09-05_009.png
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Menue Reihenfolge dreht sich ungewollt um #1319806

    Hi,
    Thank you for the screenshot, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #sub_menu1 {
    	padding: 0 55px;
    }

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

    Best regards,
    Mike

    in reply to: Blog Post Excerpt Font size and Line-hight #1319804

    Hi,
    Thank you for your patience and for the login, to ensure that the following custom css doesn’t interfere with other pages or elements I recommend adding a custom class to this blog element which you can use everywhere on your site that you want this effect, for this example we will use aktuell
    2021-09-05_005.png
    then to hide the date and change the font size & line height we will use this css rule:

    .aktuell > div > div > article > div > .slide-entry-excerpt {
    	font-size: 10px;
    	line-height: 12px;
    }
    .aktuell > div > div > article > div > .slide-meta {
    	display: none;
    }
    

    I was not sure how small you wanted the text so I guessed, feel free to adjust.
    2021-09-05_006.png
    the results:
    2021-09-05_007.png
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to remove hover link effect on images? #1319802

    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: Problems with page width and fontsize of navigation #1319799

    Hi,
    Glad Rikard could help you sort this 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: How to change footer text font size (not titles) #1319797

    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: Lightbox loading off screen #1319796

    Hi,
    Happy to help, we will leave this open until you let us know that it can be closed, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Massive Probleme mit child-theme #1319794

    Hi,
    Schön, dass wir helfen konnten, bei weiteren Fragen bitte einen neuen Thread erstellen und wir werden versuche dir gerne zu helfen. Vielen Dank, dass Sie Enfold verwenden.

    — Translated with Google —

    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: Add an Icon to a Button Styled Menu Item #1319791

    Hi,
    To correct the lock symbol from disappearing on hover please add z-index to your css like this:

    #menu-item-18120 a:before {
        font-family: 'entypo-fontello';
        width: 10px;
        height: 10px;
        display: block;
        position: relative;
        color: white;
        content: "";
        float: left;
        left: 10px;
        z-index: 1;
    }

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

    Best regards,
    Mike

    in reply to: Massive Probleme mit child-theme #1319790

    Hey mslunsky,
    Vielen Dank für Ihre Geduld, Ihrem Child-Theme-Stylesheet fehlten die Header-Informationen, die WordPress mitteilten, welches Theme als Eltern-Theme verwendet werden soll. Ich habe dies für Sie hinzugefügt und jetzt funktioniert das Child-Theme ordnungsgemäß, bitte überprüfen Sie.

    — Translated with Google —

    Thank you for your patience, your child theme stylesheet was missing the header information that told WordPress which theme to use as the parent theme, I added this for you and now the child theme works correctly, please check.

    Best regards,
    Mike

    in reply to: Layerslider issues – Layer shows up in the wrong position #1319789

    Hey NikoArq,
    Thank you for your patience and for the link to your test page, when I check only the first slide has all on the layers to the left, all of the other slides are centered including the button, even when I change the window size. While there are many options in the layerslider it is hard to say from the outside what could be causing this, I would imagine it would be something like the layer alignment on this one slide:
    2021-09-05_003.png
    Do you agree that the issue is only on the first slide? If this is a premium slider from the layerslider site then there is a chance that the first slide is using a premium Slide Transition that is not included with the built-in version.
    If you bought the premium version then you need to deactivate the bundled version at Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin and add the premium version plugin.
    2021-09-05_004.png

    Best regards,
    Mike

    in reply to: Essential / Default Images Sizes in Media Archive #1319787

    Hey Annemarie,
    Thank you for your patience, when the image sizes are changed or added it doesn’t take effect until a new image is uploaded, so you should Regenerate the images for the changes to be applied to the old images. If you are sure a size will not be needed from any of your existing images then you could just move forward without regenerating.
    I hope this makes sense and helps.

    Best regards,
    Mike

    Hey Eleina_Shinn,
    Thank you for the links to your site, on the /member-benefits/ page the line above the “Sign Up for Our Email Newsletter” section is from the footer background color, try this css:

    #footer-page.footer_color {
    	background-color: transparent;
    }

    For the second site it was the border and background color, so try this css:

    #footer-page.footer_color {
    	border-color: transparent;
    	background-color: transparent;
    }

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

    Best regards,
    Mike

    Hey HenkS5,
    Thank you for your patience, when using the WPML the non-default pages don’t add the class “current_page_item” the menu items, so to correct please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .header_color .sub_menu>ul>li>a, .header_color .sub_menu>div>ul>li>a, .header_color .main_menu ul:first-child > li > a, #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a, #top .header_color .sub_menu li ul a {
        color: #333333 !important;
    }

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

    Best regards,
    Mike

    in reply to: Lightbox loading off screen #1319783

    Hi,
    Thank you for your patience and for the links to your site, I found that the backwards lightbox arrow is from this css rule:

    div.avia-popup button.mfp-arrow:before {
        content: "\e87d";
        font-family: "entypo-fontello"
    }

    in the cache file /used.min.css
    in this cache file the original mfp-arrow css is on lines 9614-9619 with the mfp-arrow-left trailing as it needs to be:
    2021-09-05_001.png
    but this rule is added again on line 11853 after the previous mfp-arrow-left rule causing a conflict:
    2021-09-05_002.png
    I believe this is probably added in your custom css somewhere but I can’t tell by looking at your cached css, so try to see if you added this somewhere and remove it and then clear all of your caches.

    Best regards,
    Mike

Viewing 30 posts - 14,131 through 14,160 (of 35,007 total)