Forum Replies Created

Viewing 30 posts - 5,041 through 5,070 (of 34,701 total)
  • Author
    Posts
  • in reply to: icons in the menu bar #1424044

    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,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .main_color #commentform input[type='text'],
    #top .main_color #commentform textarea {
      color:    #000;
      font-size: .8em;
    }
    

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

    Best regards,
    Mike

    in reply to: Blog Posts element / Grid Layout style #1424041

    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: icons in the menu bar #1424040

    Hi,
    They are not in the same container so it would take some css for each screen size, you can try this css for desktop:

    @media only screen and (min-width: 1836px) { 
    .html_visible_cart .cart_dropdown {
        right: 27%;
    }
    }

    and then adjust for each screen size.

    Best regards,
    Mike

    in reply to: Blog post on home as slider #1424039

    Hey Sebastian,
    Thank you for your patience, but unfortunately we don’t have a solution to do that.

    Best regards,
    Mike

    in reply to: Mailchimp Newsletter funktioniert nicht #1424035

    Hey sasminka,
    Thank you for the link to your site, I see that your theme version is quiet old: 4.9.2.3
    Mailchimp has changed their API and your version won’t use it correctly, please update to v5.6.8
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Masonry-Gallery Lightbox Link Settings doesn’t work #1424034

    Hi,
    This is true :)

    Best regards,
    Mike

    in reply to: Vimeo Video in Headersection is not running #1424033

    Hi,
    I checked your site on Windows in Chrome, Firefox, & Edge and in each case once I accept the cookie on one page I’m not asked again on further pages.
    Perhaps your browser has a setting that is preventing the cookies from being stored?

    Best regards,
    Mike

    in reply to: Blog Posts element / Grid Layout style #1424030

    Hi,
    I changed the image size to No Scaling (Original Width X Original Height) in the blog element, it seems to fit correctly now. Please check.

    Best regards,
    Mike

    in reply to: Widget in Header Issues #1424027

    Hi,
    Glad Ismael could help, and thanks for the kind words I have forward it to him, 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: Custom Post Template #1424026

    Hi,
    Glad Ismael could help, and thanks for the kind words I have forward it to him, 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 the link to your site but it seems down right now, please check.

    Best regards,
    Mike

    in reply to: Calendar background #1424023

    Hi,
    You could try this css:

    #top .av_inherit_color .fc-header-toolbar * {
    	color: initial;
    }

    or you could try moving the code that displays your calendar to a code block element instead of using the text block element that you are currently using, I don’t think the code block element will add the class .av_inherit_color

    Best regards,
    Mike

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

    #commentform ::-webkit-input-placeholder {
      color:    #000;
      font-size: .8em;
    }
    #commentform :-moz-placeholder {
      color:    #000;
      font-size: .8em;
    }
    #commentform ::-moz-placeholder {
      color:    #000;
      font-size: .8em;
    }
    #commentform :-ms-input-placeholder {
      color:    #000;
      font-size: .8em;
    }
    

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

    Best regards,
    Mike

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

    #top.woocommerce-shop .template-shop .product-sorting {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Masonry-Gallery Lightbox Link Settings doesn’t work #1424020

    Hi,
    Good tip Guenni007, I see emilconsor is using a custom header.php & footer.php, we do not recommend adding these files to your child theme, it is the most common reason for errors when updating. Please remove these files and any customizations you wish to make should be done in your child theme functions.php

    Best regards,
    Mike

    in reply to: Updated to latest Enfold and can’t see comments on PAGES #1424019

    Hi,
    Please see the bottom of the article that Ismael linked to above, it tells how to turn comments on for multiple posts or pages.

    From the Posts/Pages screen, check the boxes next to the posts or Pages on which you want to enable comments. Select “Edit” from the “Bulk Edit” Dropdown box and click Apply. Then, select “Allow” next in the Comments dropdown box and finish by clicking “update.”

    Best regards,
    Mike

    in reply to: Shop (Woocommerce) Sortierung (Preis) #1424018

    Hey emptykai,
    Thank you for your patience, please include a link to your page so we can examine, and perhaps a admin login would help.

    Best regards,
    Mike

    in reply to: do_shortcode not working when logged out #1424017

    Hi,
    I notice that on your page you have this error Uncaught TypeError: $(...).wc_product_gallery is not a function from your custom.js
    I’m not sure if this error also occurs when logged in, perhaps this is related.
    If this doesn’t help Please include an admin login in the Private Content area so we can examine further.

    Best regards,
    Mike

    in reply to: Custom Masonry Gallery #1424016

    Hey pebbledavelambert,
    Thanks for your patience, the masonry element displays items based of their categories, does your CPT have any categories?
    Please try creating specific categories for your CPT and then select those categories in the masonry element.
    If you do have categories and they still don’t show please try adding this code to your child theme functions.php and modify for your CPT

    function avf_alb_supported_post_types_mod( array $supported_post_types ) {
    		$supported_post_types[] = 'your-cpt';
    		return $supported_post_types;
    	}
    	add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    	
    	function avf_metabox_layout_post_types_mod( array $supported_post_types ) {
    		$supported_post_types[] = 'your-cpt';
    		return $supported_post_types;
    	}
    	add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);

    Best regards,
    Mike

    in reply to: Layout Blog Posts in Categories #1424015

    Hi,
    Thank you for the link to your site and your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_elegant-blog #top.category .post-entry .post-meta-infos {
        float: none;
    }

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

    Best regards,
    Mike

    in reply to: icons in the menu bar #1424014

    Hi,
    Thank you for your patience, currently your shopping cart is on the right edge of the screen on desktop and mobile, so I’m not sure what you mean by you want it directly behind the instagram, but you can make the background color of the cart blue with this css:

    #top .header_color .cart_dropdown_link {
       background-color: #0098d2;
    }

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

    Best regards,
    Mike

    in reply to: Contact Form not responsive #1424013

    Hi,
    The issue seems to be that the google badge message on your form has a min width of 300px and on very small screens this is too large.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 400px) {
    #top .avia_ajax_form .av-google-badge-message {
        min-width: 100%;
    }
    }
    

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

    Best regards,
    Mike

    in reply to: Portfolio Grid #1424011

    Hi,
    Unfortunately there is not a way to order the categories in a specific order in the portfolio grid.

    Best regards,
    Mike

    in reply to: Accordion blue color #1424010

    Hi,
    Is this the same issue as this thread?
    I’m not seeing a blue line on a Android device, so I believe that what you are seeing is set by your iPhone, I’m not sure where exactly you are seeing this because your video is private, but perhaps this css will help:

    #top .main_color .single_toggle:focus {
      outline: 0 !important;  
      outline: 0 -webkit-focus-ring-color !important; 
    }

    Best regards,
    Mike

    in reply to: Accordion #1424008

    Hi,
    Is this the same issue as this thread?
    I’m not seeing a blue line on a Android device, so I believe that what you are seeing is set by your iPhone, I’m not sure where exactly you are seeing this because your video is private, but perhaps this css will help:

    #top .main_color .single_toggle:focus {
      outline: 0 !important;  
      outline: 0 -webkit-focus-ring-color !important; 
    }

    Best regards,
    Mike

    • This reply was modified 1 year, 9 months ago by Mike.
    in reply to: Custom social icons on the header #1424007

    Hi,
    Thanks for the video, but I don’t understand the issue, the buttons look the same before and after you open the burger menu:
    before:
    Enfold_Support_3787.jpeg
    after:
    Enfold_Support_3789.jpeg

    Best regards,
    Mike

    in reply to: Prevent SPAM on Email Buttons #1424006

    Hi,
    Glad Ismael could help, please let us know if you need further help or if we should close this thread.

    Best regards,
    Mike

    in reply to: Wrong order of upcoming events #1424005

    Hi,
    Glad Günter could help, we will go ahead and close this thread as you requested, 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, your question seems to be about the masonry image gallery giving an error for “list items” since I’m not able to access this report or the tool, I assume that the tool is referring to a “li” on your page, but the only “li” I find is in the timeline element, perhaps this is the element your report is referring to?
    If so I’m not sure what the report means by “semantically as a list”, I tried Googling this but didn’t find an explication of the expected results.
    Please check if this is referring to the timeline element and explain what the expected results would be.
    I note that the timeline element is not a normal “list item” so I’m not sure that we can change the element to something else like a “div” very easily, if that is wahat the solution will be.

    Best regards,
    Mike

Viewing 30 posts - 5,041 through 5,070 (of 34,701 total)