Forum Replies Created

Viewing 30 posts - 47,551 through 47,580 (of 65,998 total)
  • Author
    Posts
  • in reply to: MENU ZEN LOGIC #449879

    Hi mleite1!

    Thank you for using Enfold.

    We need to see the actual page in order to fix the issue. Please post the url here.

    Regards,
    Ismael

    in reply to: slider 3d #449877

    Hi!

    The transition effects of the sliders are 3D when I checked the page. Please remove browser cache then test it again.

    Cheers!
    Ismael

    in reply to: Grid row issues #449871

    Hi!

    Thank you for using Enfold.

    Use this in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive #top #main .products .product {
      margin: 0 1% 1% 0;
      width: 49%;
    }}

    Cheers!
    Ismael

    in reply to: woocommerce custom product data field #449865

    Hi Micheal0424!

    Thank you for using Enfold.

    You don’t need to add a code for that. You can create product variations. Refer to this link for more info: http://docs.woothemes.com/document/variable-product/

    If this is not what you’re looking for, please provide a website with the example or a screenshot. Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Area widget in the header #449864

    Hey!

    What is the code that you use and what the expected layout? Please post the code on pastebin.com and the screenshot on imgur or dropbox. We would like to see what you’re trying to do. You can fix the layout via css but I’m not sure exactly what you’re aiming for.

    .widget_black_studio_tinymce {
      margin-top: 120px;
    }
    
    #top #header_main > .container {
      height: auto !important;
    }

    Cheers!
    Ismael

    in reply to: CCS Issues #449863

    Hi!

    I checked the other link but I don’t see any accordion slider. You’re currently not using the latest version of the theme. Please update to 3.1.5. That should fix the issue.

    Cheers!
    Ismael

    in reply to: mobile menu #449861

    Hey!

    I tested the mobile menu modification on my installation and it works fine. It doesn’t change the theme location name so it’s either a third party plugin or a custom modification in your installation. Please try to deactivate all plugins then test it again. If you’ll give us your permission, we would like to deactivate the plugins to test which plugin is causing the issue. You can also edit this code:

    register_nav_menu($key, THEMENAME.' '.$name);
    

    Replace it with:

    $theme_name = get_current_theme();register_nav_menu($key, $theme_name.' '.$name);
    

    Cheers!
    Ismael

    Hey!

    Some of the custom styles are working. You can replace input related codes with this:

    body .gform_wrapper .gfield input[type=text], body .gform_wrapper .gfield input[type=email], body .gform_wrapper .gfield select {
      margin-left: 15px !important;
    }

    Where exactly is the button with the youtube link? Can you please provide a screenshot?

    Regards,
    Ismael

    Hey!

    If you use the advance layout builder for product or any custom post types, you need to add all the contents manually including the price, add to cart button, product title etc. For the price, use a code or text block. You can use the Special Heading for the title. There are also additional shortcodes specifically for products. You can find it in the Plugin Additions panel.

    Cheers!
    Ismael

    in reply to: Some responive problems on mobile view #449847

    Hey!

    Alright. Please check it now.

    You need to clean your css codes. Media queries should be declared once and they usually go at the very bottom of the stylesheet.

    @media only screen and (max-width: 768px) {
    /* Add your Mobile Styles here */
    }
    
    @media only screen and (max-width: 480px) {
    /* Add your Mobile Styles here */
    }

    Cheers!
    Ismael

    • This reply was modified 10 years, 1 month ago by Rikard. Reason: Customer requested to remove link
    in reply to: Content Attribute title not calling in #449845

    Hey Marco!

    Thank you for using Enfold.

    The .av-masonry-image-container doesn’t have a title attribute that’s why the content property is not working. Can you please provide a screenshot of what you’re trying to do? Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Changing Tab border and colour for visibility #449843

    Hey!

    We only need the WP dashboard access. If you can provide that, it would be great. Regarding the plugin, unfortunately, we don’t provide support for third party plugins. Please contact the plugin author.

    Best regards,
    Ismael

    Hi!

    Did you try to toggle the Blog Content length option? Please post the login details here so that we can check the site.

    Best regards,
    Ismael

    in reply to: Sticky header behavior #449822

    Hi!

    You have to remove these codes in the style.css file:

    .html_header_top.html_bottom_nav_header #header_main {
      z-index: 3;
      height: 134px;
    }
    
    .html_header_top.html_bottom_nav_header #header_main {
      z-index: 3;
    height: 134px;
    }

    It breaks the header shrink script.

    Best regards,
    Ismael

    in reply to: Enfold one page navigation solution ? please help? #449820

    Hi!

    You have this code which triggers the jump:

    <script type="text/javascript">
    				jQuery.noConflict();
    				(function( $ ) {
    					$(function() {
    						// More code using $ as alias to jQuery
    						$("area[href*=#],a[href*=#]:not([href=#]):not([href^='#tab']):not([href^='#quicktab']):not([href^='#pane'])").click(function() {
    							if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
    								var target = $(this.hash);
    								target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
    								if (target.length) {
    								$('html,body').animate({
    								scrollTop: target.offset().top - 200  
    								},900 ,'easeInSine');
    								return false;
    								}
    							}
    						});
    					});
    				})(jQuery);	
    			</script>

    Not sure how you added that but you need to remove it.

    Best regards,
    Ismael

    in reply to: Special Heading Shortcode Malfunction #449818

    Hey!

    You can also try to escape the characters by adding backslashes:

    \"Tania\’s Magnific\-Essence\"
    

    Note that you need to add the backslashes if you edit the element again.

    Cheers!
    Ismael

    Hi!

    I was able to reproduce the issue. IMO, it isn’t a big deal. The options are still usable. If it really bugs you, it’s possible to manually edit the width and height attribute or the alignment of the image in the text or html mode:

    <a href="http://yoursite.com"><img class="alignnone  wp-image-363" src="http://yoursite.com/sampleimagehere.jpg" alt="alt" width="264" height="397" /></a><ul>
    

    Cheers!
    Ismael

    Hi!

    You can create another slider specifically for mobile. Please refer to this link for more info: https://kriesi.at/support/topic/home-page-video-on-mobile-phone/#post-449166

    Follow the links provided on the previous thread. You can use css media queries to show or hide any specific element on different screen sizes.

    Cheers!
    Ismael

    in reply to: Play a video from YouTube in Layer Slider #449810

    Hey Nomadigo!

    Thank you for using Enfold.

    You can generate the video shortcode on a temporary post or page by using the shortcode wand. Copy it to one of the layer in the slider. You may not be able to see the video in the slider preview but it should work in the front end.

    Best regards,
    Ismael

    in reply to: PROBLEMS WITH PORTFOLIO ELEMENTS #449805

    Hey tecnoprof!

    Thank you for using Enfold.

    You need to properly translate the portfolio slugs. Please refer to this link: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/

    Regards,
    Ismael

    in reply to: Invalid color value in childe theme css #449802

    Hey Kevin!

    Thank you for using Enfold.

    That’s weird. Not really sure what’s causing it. Do you have a cache plugin? Please try to deactivate all plugins then delete the file. Toggle any theme options to regenerate it. I’m sure you checked the general styling panel, right?

    Regards,
    Ismael

    in reply to: Slider in Blog page #449801

    Hey Bettina!

    Thank you for using Enfold.

    There is no controller because there is only one slide in the slider.

    Cheers!
    Ismael

    Hey!

    Is this solved or not? I’m a bit confused in your response here:

    However if I look at it in Safari on my mac (with user agent set to iPad 8.1) on MOUSE over the caption box appears with ONLY the Title visible, just as I needed (thanks). iPhone has the same problem.

    What’s the issue again? If you want to remove the excerpt on mobile devices, you can add this:

    @media only screen and (max-width: 768px) {
    .av-masonry-entry-content.entry-content {
      display: none !important;
    }}

    Cheers!
    Ismael

    in reply to: Blog Content Text Position #449797

    Hey!

    You can replace the code with this:

    @media only screen and (min-width: 768px) {
    .page-id-326 .entry-content p {
      text-align: center !important;
    }}

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Masonry gallery image problems #449795

    Hi tech500!

    Thank you for using Enfold.

    The masonry items loaded fine when I checked the page initially. Try to install a cache and minify plugin to improve loading speed. Or follow the solution provided here: https://kriesi.at/support/topic/masonry-gallery-images-stacking-on-top-of-each-other/#post-433895

    The thumbnail that is being use in the masonry element is the masonry thumbnail with a max width and height of 705px. This is important to cover taller and wider images which is what the masonry element needs, flexibility. And since the masonry column container is percentage base, there’s no way to set a specific thumbnail size without compromising the image ratio and proportion. To make a long story short, any page with the masonry element in it will have a hard time passing the google image optimization test without tinkering with the core theme files. However, you can decrease the thumbnail size and then regenerate the thumbnails (https://wordpress.org/plugins/simple-image-sizes/) or you can use this plugin to compress image file size even more: https://wordpress.org/plugins/wp-smushit/

    Best regards,
    Ismael

    in reply to: How do I…? – Part 2 #449788

    Hey!

    I would like to see the page but there is an internal server error. Please contact your hosting provider.

    Regards,
    Ismael

    in reply to: Home page video on mobile phone #449787

    Hey!

    Yeah, sure. Please post the login details here. We’ll create an example in a test page. What you need to do first is to enable the custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    1.) Edit the current slider, look for the Custom CSS Class field at the very bottom of the slider options panel. Add a custom css class attribute, call it “hide-mobile” for example.

    2.) Add another video element above or below the slider then add the url of the video, same video url in the slider, configure the options etc. Again, look for the custom css class attribute, this time use “hide-desktop”.

    3.) Save the page then go to the Quick CSS field. Use this:

    @media only screen and (max-width: 989px) {
    .hide-mobile { display: none; }}
    @media only screen and (min-width: 990px) {
    .hide-desktop { display: none; }}

    You should have an automatic video slider on desktop view and a video element that users can watch on mobile.

    Regards,
    Ismael

    in reply to: Fullwidth slider and sidebar conflict on Blog page #449392

    Hey!

    There is a container that is automatically added on top of the page. I’m not sure where it’s coming from. The theme options should stay intact if you delete the theme folder because it it save in the database. Anyway, please create a backup and a restore point just in case.

    Regards,
    Ismael

    in reply to: Some responive problems on mobile view #449391

    Hi!

    After you add the custom css class attribute, you need to use it in the Quick CSS field in order to modify the current element. Use this:

    .gefuehle-title h3 {
      text-align: right;
    }

    Best regards,
    Ismael

    Hi!

    Looks like you don’t have the latest version of the theme. Please try to update to version 3.1.5. Let us know if it fix the issue. And it will help if you can increase the current wp memory limit to at least 128M. Refer to this for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

Viewing 30 posts - 47,551 through 47,580 (of 65,998 total)