Forum Replies Created

Viewing 30 posts - 46,351 through 46,380 (of 66,052 total)
  • Author
    Posts
  • in reply to: Separator Whitespace Problem… #480043

    Hey Jörg!

    Thank you for using Enfold.

    If you add a color section then add another element outside of it, the theme automatically creates a new section to wrap the element outside the color section. What happens when you place the separator element inside the color section?

    Regards,
    Ismael

    in reply to: issues with onepage-anchor menu #480042

    Hey!

    Switch to the left or sidebar menu then add this in the Quick CSS field to adjust the current menu item highlight:

    #top #header .av-main-nav > .current-menu-item > a .avia-menu-text, #top #header .av-main-nav > .current-menu-item > a .avia-menu-subtext {
      color: orange;
    }

    Cheers!
    Ismael

    in reply to: Image blog post out of container #480040

    Hi!

    Use this plugin to adjust the dimension of the “entry_with_sidebar” thumbnail. https://wordpress.org/plugins/simple-image-sizes/

    Install the plugin then go to the Settings > Media panel. Look for the thumbnail, adjust the size then regenerate the images.

    Regards,
    Ismael

    in reply to: latest News Widget With Link in the Excerpt #480038

    Hey!

    You can set the post format to “Link” then add the url of the site where you want the post to go when clicked. https://codex.wordpress.org/Post_Formats

    Best regards,
    Ismael

    in reply to: Masonry galley not working with WPML #480036

    Hi!

    We configured the language and permalink settings and it’s working now. I hope you don’t mind the url or permalink structure:

    http://tigmotorsport.wpengine.com/he/delivery/ (hosted on WPengine)
    http://tigmotorsport.wpengine.com/he/delivery/page/2/

    It is more SEO friendly.

    Best regards,
    Ismael

    in reply to: menu bar #480033

    Hey!

    I was able to go to the wp login but the credentials that you provided above are not working. Did you remove it? Please check it carefully.

    Regards,
    Ismael

    in reply to: image caption doesn't resize in iPad #480032

    Hey Mario!

    Thank you for using Enfold.

    If you don’t mind, please create a single thread for each question. Anyway, I want to check the site but it is currently on maintenance mode.

    Regards,
    Ismael

    in reply to: menu bar, main navigation #480031

    Hey Michel!

    Thank you for using Enfold.

    We don’t mind answering multiple questions but if you can open a single thread for each of theme, that would be great.

    1.) Where did you apply the transparent background of menu bar? What selector did you use?

    2.) You can remove the blue line with this:

    .avia-menu-fx {
      display: none !important;
    }

    3.) Please check the Slider Settings > Slideshow > Other settings. Make sure that the shuffle mode is disabled.

    4.) The default contact form doesn’t have that feature by default so you’ll have to find a plugin or a custom script for that. I’m not sure if CF 7 can do that.

    Regards,
    Ismael

    in reply to: Background Image and mobile RESIZE #480024

    Hey!

    Yeah.. It sure is. Please try this:

    @media only screen and (max-width: 1200px) {
    #smallgap .av-parallax {
      display: none !important;
    }}

    Please check the css modifications, make sure that there are no missing brackets in the css media queries. Don’t forget to remove browser and plugin cache.

    Regards,
    Ismael

    Hey!

    But Enfold-Child is intended only for the home page. How can I get enfold-child2 displayed, under Network Management / Dashboard / Themes?

    You can’t set two child themes on the same installation. Is that what you’re trying to do here?

    Best regards,
    Ismael

    in reply to: Background Image and mobile RESIZE #479475

    Hi!

    I think it’s because of the retina display. Please try to add this css code:

    @media 
    (-webkit-min-device-pixel-ratio: 2), 
    (min-resolution: 192dpi) {
    .av-parallax.avia-full-stretch.enabled-parallax.active-parallax {
    background: none !important;
    }}

    If it doesn’t work, replace the media query with this:

    @media
    only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (   min--moz-device-pixel-ratio: 2),
    only screen and (     -o-min-device-pixel-ratio: 2/1),
    only screen and (        min-device-pixel-ratio: 2),
    only screen and (                min-resolution: 192dpi),
    only screen and (                min-resolution: 2dppx) { 
      
      /* Retina-specific stuff here */
    
    }

    Regards,
    Ismael

    in reply to: TOC+ vs Social Buttons #479472

    Hey!

    I tried to login again to the site but the login credentials above are not working. Also, I checked the pages and the TOCs are showing up on both pages:

    http://www.leb-dich-fit.de/the-miracle-morning-von-hal-elrod-erfahrungen/
    http://www.leb-dich-fit.de/bulletproof-coffee/

    Unfortunately, we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author for more info.

    Cheers!
    Ismael

    in reply to: Upcoming Events Widget – remove repeat information #479471

    Hey!

    Can you please open a new thread for the issue regarding the events-countdown-widget? The thread is getting a bit too long. I was able to find why the var_dump function isn’t working. My bad. But I still don’t know why the countdown is set to zero. It shows the correct upcoming event on the temp page but the countdown is not working. We will close this thread for now.

    Regards,
    Ismael

    in reply to: Easy Slider responsive height scale images #479465

    Hey!

    What is the purpose of the “bg-ghost-area”? The slider section looks OK when I checked the page.

    Regards,
    Ismael

    in reply to: Issue with layout grid on small mobiles #479461

    Hey!

    Unfortunately, that is the default behavior of the masonry item when set to perfect automated masonry. You can create another masonry item under the default masonry then set the same settings but this time set the Size Settings to Flexible Masonry. Use css media queries to switch the display of the masonry items on different screen sizes. Please post the login details here so that we can check it.

    Regards,
    Ismael

    in reply to: You may also like… OR Related products #479458

    Hi!

    It should hide the related product section. Add this in the Quick CSS field:

    .product_column.product_column_5 + .product_column.product_column_5 {
      display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Mega menu hover positioning #479454

    Hi!

    You have this code in the Quick CSS field:

    #top #wrap_all .av-main-nav ul > li:hover > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul {
      color: #ffffff;
      background-color: #CC6600;
      border-color: #cc6600;
      font-size: 12px;
      line-height: 1em;
    }

    Remove the line-height property.

     line-height: 1em;
    

    Best regards,
    Ismael

    in reply to: Mobile Menu Hover #479448

    Hi!

    The hover effect is working but you need to touch the menu bar instead of the actual menu text. Try to use this:

    #mobile-advanced li:hover, .html_header_mobile_behavior #mobile-advanced span:hover, .html_header_mobile_behavior #mobile-advanced span:hover a {
      background-color: #018db0 !important;
      color: #ffffff !important;
    }

    Cheers!
    Ismael

    in reply to: center image and text vertical #479445

    Hi!

    Edit the image elements then add a custom css class attribute to it. Do this for all images using the same portrait.

    For future reference we kindly ask you to refrain from bumping the thread. Since we answer questions from oldest to newest, bumping makes it appear new and it will probably take us longer to respond on your inquiry. Replies in the forum can take up to 24 hours during the week, but oftentimes we are able to get to questions much quicker than that. We request that our users wait patiently while we work our way through the forum as we can assure you that all questions will be addressed as soon as possible.

    Thank you for your understanding. For further modifications, please contact codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: Add variation only for one variation #479444

    Hi!

    There is no option for that by default and I’m not sure if there any woocommerce extension that you can use with that feature. It will help if you can contact the woocommerce support.

    Regards,
    Ismael

    Hi!

    My bad. You have to modify the defaults-template.php file. Remove everything then replace it with this code: http://pastebin.com/rhtUtra6

    Regards,
    Ismael

    Hey!

    I was able to reproduce the issue on Chrome, Windows 8. Please try this this in the Quick CSS field to disable the animation:

    .avia_transform .avia-gallery-thumb img {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }

    If possible, increase the wp memory limit to at least 128M: http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Easy slider with video, header, icon #479431

    Hey!

    Try to add this to the Quick CSS field to remove the default main menu on mobile devices with screen size lower than 768px:

    @media only screen and (max-width: 768px) {
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet #header_main .social_bookmarks, .responsive.html_mobile_menu_tablet #header_main_alternate {
      display: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Post Template #479429

    Hey!

    The template for the single post page is the includes > loop-index.php file. To test it, try to remove the code inside this file then check one of the single post items. The post should be blank.

    Cheers!
    Ismael

    in reply to: Fixed background issue #479428

    Hey James!

    Thank you for using Enfold.

    I checked the site and the scroll down arrows are disabled even on desktop view. Please create a test page so that we can check it.

    If you noticed the background not fixed on mobile devices, unfortunately, that is the default behavior of the color section background on mobile devices. The background fixed property is not supported by all browser specially mobile browsers. The parallax effect is disabled because the css translate property that is responsible for the parallax effect is still also partially supported on mobile browsers. These are the known issues on mobile devices regarding these properties:

    1.) iOS has an issue preventing background-position: fixed from being used with background-size: cover.
    2.) Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.

    Cheers!
    Ismael

    Hey!

    That is the login area to the cpanel. We need to login to the WP dashboard. Please ask your hosting provider.

    Regards,
    Ismael

    in reply to: VIDEO MEDIA ELEMENT BUG #479423

    Hi dwebprojects!

    Thank you for using Enfold.

    We need to see the actual website to see what’s going on with it. Make sure that you have the latest version which 3.2.2. Try to edit the video element then adjust the Video Format. A link to the actual video will help as well.

    Cheers!
    Ismael

    in reply to: Shopping Cart Icon at secondary menu #479422

    Hi!

    Use css media queries to adjust the position on different screen sizes. Example:

    @media only screen and (min-width: 1200px) {
    .html_visible_cart .cart_dropdown {
      right: 500px;
    }
    }

    This will adjust the right position of the cart icon on screen sizes larger than 1200px.

    Cheers!
    Ismael

    in reply to: Layer Slider Image Transparency #479419

    Hey!

    Thank you for the info. You can add the background as a another layer under the boxes. If you can provide a screenshot of the slider layout, it will help. Use imgur or dropbox.

    Cheers!
    Ismael

    in reply to: Different order on flex_columns in responsive mode #479416

    Hi QBDSwedenAB!

    Thank you for using Enfold.

    Did it work? The box-ordinal-group css property is currently not supported on all browsers specially on IE and it requires that the column display is set to flex. You will have to come up with another solution, probably, by using javascript. Or creating another set of columns with different order. Use css media queries to hide and show these columns on different screen sizes.

    Regards,
    Ismael

Viewing 30 posts - 46,351 through 46,380 (of 66,052 total)