Forum Replies Created

Viewing 30 posts - 48,181 through 48,210 (of 66,033 total)
  • Author
    Posts
  • in reply to: change gif for page preloader #439038

    Hi pixallus!

    Thank you for using Enfold.

    You can modify the css:

    .av-siteloader {
      font-size: 10px;
      position: relative;
      text-indent: -9999em;
      margin: 0 auto;
      border-top: 2px solid rgba(0, 0, 0, 0.2);
      border-right: 2px solid rgba(0, 0, 0, 0.2);
      border-bottom: 2px solid rgba(0, 0, 0, 0.2);
      border-left: 2px solid #000;
      -webkit-animation: av-load8 0.8s infinite linear;
      animation: av-load8 0.8s infinite linear;
    }

    You can find the animation keyframes in the css > layout.css file:

    @-webkit-keyframes av-load8 {
      0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
      100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
    }
    @keyframes av-load8 {
      0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
      100% {-webkit-transform: rotate(360deg); transform: rotate(360deg); }
    }

    It’s possible to create your own animation. Look for any css animations tutorial.

    Cheers!
    Ismael

    Hey schiou!

    Thank you for using Enfold.

    This feature sounds good. Might be really helpful for restaurant websites. Unfortunately, this will require major modification on the theme that we can’t provide here. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Enfold Masonry problem safari ios #439028

    Hi!

    I checked the actual page on an iOS device (iPod) and the masonry items display immediately on initial load. Please remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Custom post Type in Masonry #439025

    Hi!

    I see that you’ve a added a custom taxonomy but your freebies posts doesn’t have any terms (category) from this custom taxonomy: http://bedesignful.com/wp-admin/edit-tags.php?taxonomy=freebie+tax&post_type=freebies

    I created an example on one of your posts: http://bedesignful.com/wp-admin/post.php?post=7166&action=edit

    This is the freebies page now: http://bedesignful.com/free/

    Best regards,
    Ismael

    in reply to: Change image upon hover in advanced layer slider #439006

    Hi!

    You need to add the css code in the Quick CSS field. If you add the “imdb-icon” in the ID field of the Attributes panel, you need to use this:

    #imdb-icon:hover { background-color: blue !important; }
    

    Cheers!
    Ismael

    in reply to: YouTube embed has turned ugly #438971

    Hi!

    Actually, it has to be wrapped inside that container to keep the ratio of the video. I tested the youtube link on my installation and it works fine. Please add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script_mod');
    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
    	$('.embed-youtube').each(function() {
    		$(this).wrap('<div class="avia-iframe-wrap" style="padding-bottom: 56.2666666666667%;"></div');
    	});
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Don't display image on single post #438945

    Hi!

    I’m not sure how this plugin creates the post. You can’t access those posts in the Posts panel?

    Cheers!
    Ismael

    in reply to: Changing Search Icon in Header #438941

    Hey!

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    li#menu-item-search a:after {
      content: 'Search';
      display: block;
      position: absolute;
      font-size: 11px;
      top: 5px;
      left: 30px;
    }

    Adjust the position if necessary.

    Regards,
    Ismael

    in reply to: Schema.org modifications #438936

    Hey!

    Please edit includes > loop-commments.php, look for this code around line 17:

    <article>
    

    Replace it with:

    <article <?php avia_markup_helper(array('context' => 'comment','echo'=>true)); ?>>
    

    There will be no error after that but there will be a warning for the commentTime structure. You can just ignore it for now.

    Cheers!
    Ismael

    Hey mocablue!

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    .avia_codeblock img#myimg {
      position: relative !important;
    }

    Regards,
    Ismael

    Hi!

    Actually, this is a server related issue. What is the file size of the images that you’re trying to upload? Maybe, increasing the maximum allowed size for uploaded files and max post size will help:

    upload_max_filesize = 64M
    post_max_size = 64M
    

    If it doesn’t work, try to edit the .htaccess file then add this line at the very top:

    AddType x-mapp-php5 .php
    

    If those fix are not enough, try to convert the image to jpg then upload it again. Or follow the solution provided here: http://codex.wordpress.org/User:Hakre/Htaccess_Auth_Excludes

    Cheers!
    Ismael

    in reply to: Can't import Photography demo. #438912

    Hi!

    Please refer to this link for a possible fix: https://kriesi.at/support/topic/import-demo-data/#post-436918

    If it doesn’t work, try to manually import the demo xml files located on includes > admin > demo_files.

    Best regards,
    Ismael

    in reply to: WordPress Import Error Message – HELP! #438909

    Hi pmchargue!

    Thank you for using Enfold.

    Are you working on a localhost? This issue with the demo import is a little erratic. Only happens on a few installation. Please refer to this link for a possible fix: https://kriesi.at/support/topic/import-demo-data/#post-436918

    You can find the demo files in includes > admin > demo folder.

    Cheers!
    Ismael

    Hey!

    Where did you get the id selectors (#fieldname2_2_caption, #field_2-5 etc.)?

    Regards,
    Ismael

    in reply to: Social Network Sharing Icons formatting #438732

    Hi!

    You can try this:

    #top .av-share-box ul {
    	border: 0;
    }
    
    .av-share-box ul li, .av-share-box ul li:first-child, .av-share-box ul li:last-child {
    	border: 1px solid #e1e1e1;
    }
    
    .av-share-box ul li {
      display: inline-block;
      min-width: 50px;
      margin: 0 15px;
    }
    
    .av-share-box ul li a {
      padding: 5px 5px;
    }

    Add css media queries to adjust the width of the social icons on different screen sizes.

    Best regards,
    Ismael

    Hey EthicalSeller!

    Thank you for using Enfold.

    1.) What is the code that you use ? I’m sure your developer can easily fix this.
    2.) Try this in the Quick CSS field:

    p a, p a:visited {
      font-weight: 600;
    }

    3.) What do you mean when you say “re-install”? Did you add it as a featured image or did you insert the image using the advance layout builder?

    4.) There is a revisions history on every page. Look for Screen Options > Revisions. Be careful when choosing the revisions. It might remove the latest additions to the page.

    Best regards,
    Ismael

    in reply to: Icon Swap for Custom Icon #438723

    Hey cannan!

    Thank you for using Enfold.

    Can you please provide a screenshot of the rollever effect that you want?

    Regards,
    Ismael

    in reply to: I need to set Custom Height for accordian #438716

    Hi!

    You can choose a thumbnail size with a shorter height in the Accordion Image Size settings.

    Best regards,
    Ismael

    in reply to: Full Size Images #438709

    Hi!

    Can you please provide a link to the page with the issue? Is this happening on all elements?

    Cheers!
    Ismael

    Hey!

    Remove the css code then add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script_mod');
    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
    	$(window).scroll(function(){
    		var scrolled = $(window).scrollTop();
    	
    		if(scrolled >= 100) {
    			$('div .logo').addClass('left-logo');			
    		} else {
    			$('div .logo').removeClass('left-logo');
    		}
    	});
    })(jQuery);
    </script>
    <?php
    }

    Then add this in the Quick CSS field:

    .logo {
    	-webkit-transition: all 0.5s linear;
    	-moz-transition: all 0.5s linear;
    	-o-transition: all 0.5s linear;
    	transition: all 0.5s linear;
    }
    
    .logo.left-logo {
    	left: 120px;
    }

    Cheers!
    Ismael

    Hey EricSmeets!

    Thank you for using Enfold.

    Unfortunately, you have to escape the comma symbol every time you edit the form element. This is actually an improvement from the previous version of the theme where it’s completely not possible to add a comma symbol in the select element. I agree that this is somewhat of an inconvenience but to tell you the truth, you’re the only who noticed this.

    Cheers!
    Ismael

    in reply to: Form not working correctly #438695

    Hey!

    Alright. Can you please create a test page with the same form? You can save the current page layout as template. We would like to test it on our own email.

    Cheers!
    Ismael

    Hi!

    Thank you for the link. Add this in the Quick CSS field:

    section#avia_google_maps-2 h3.widgettitle {
      margin-bottom: 20px;
    }

    Cheers!
    Ismael

    in reply to: Single product image size #438692

    Hi!

    The better thing to do is to resize the product images before uploading them to the gallery. You need to decide prior to uploading the images which image ratio and size to be use on a specific product. There’s just no way to define different cropping parameter for one image and then define another parameter for the second one.

    Regards,
    Ismael

    in reply to: Rollover effect for Layerslider image layer #438691

    Hey!

    Can you please provide a screenshot of what you’re trying to do? Se the layer attributes panel in order to add custom css class or id to a layer. You can then use that attribute in the Quick CSS field to create css effects such as rollovers etc. Again, you can find lots of tutorials for css rollover effects. Example: http://designshack.net/articles/css/joshuajohnson-2/

    Cheers!
    Ismael

    in reply to: blurry pictures #438690

    Hi!

    Thank you for the info. Which browser are you using? Please try this in the Quick CSS field:

    .products .product h3, .products .product h4, .products .product h5, .products .product h6, #top .thumbnail_container img {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    Hi ryandboyle!

    Thank you for using Enfold.

    If you check the html codes using google inspector or firebug, you’ll see that the body tag is duplicated and the id/classes attributes are missing.

    <body class=" customize-support"><body>
    

    This is usually cause by a third party plugin. What happens when you switch to a default theme?

    Please go to wp-content / uploads folder then rename the plugins folder. It will totally deactivate the plugins, remove browser cache then check the page again.

    Regards,
    Ismael

    in reply to: edit search (ajax) position #438686

    Hey!

    Thank you for using Enfold.

    Add this to the functions.php:

    add_action('ava_inside_main_menu', 'ava_inside_main_menu_mod');
    function ava_inside_main_menu_mod() {
    	get_search_form();
    }

    Remove the default search icon on Enfold > Header > Extra Elements panel.
    Cheers!
    Ismael

    in reply to: ENFOLD – How to remove the Read More button? #438685

    Hey!

    Do you want to set the post as the front page of the site? It’s not possible to set a POST as home page.

    Cheers!
    Ismael

    in reply to: Button Issue on Mobile Devices #438684

    Hey!

    Thank you for the test page. I checked the site again on iOS device, safari and chrome. The buttons are working in either portrait or landscape mode. Are you sure it’s not working? Please try to remove browser cache then reload the page. There’s no element in the site that can cover up the button so there’s no reason why it won’t work.

    Cheers!
    Ismael

Viewing 30 posts - 48,181 through 48,210 (of 66,033 total)