Forum Replies Created
-
AuthorPosts
-
Hey!
Try this to adjust the tooltip position.
.avia-tooltip.avia-tt { margin-top: 170px; } .avia-tooltip .avia-arrow-wrap { top: -20px; } .avia-arrow { top: 15px; margin-left: -5px; }
Note that this is going to be applied to all elements with the tooltip caption.
Best regards,
IsmaelHey!
I tried to login but it’s not working. Tried more than 3 times: EDITED
Best regards,
IsmaelHey!
Is this happening on all kinds of url? I checked the latest post and it properly links to this page: http://ww2.kqed.org/mindshift/2014/04/09/more-progressive-ways-to-measure-deeper-level-of-learning/
Cheers!
IsmaelHey!
Thank you for the info. Please edit js > avia.js, look for this code around line 712:
var tempPadding = parseInt($main.data('scroll-offset'),10) || 0, non_shrinking = parseInt($meta.outerHeight(),10) || 0, non_shrinking2 = parseInt($alt.outerHeight(),10) || 0; if(tempPadding > 0 && shrink) { tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2; } else { tempPadding = tempPadding + non_shrinking + non_shrinking2; }
Replace it with:
var tempPadding = parseInt($main.data('scroll-offset'),10) || 0, non_shrinking = parseInt($meta.outerHeight(),10) || 0, non_shrinking2 = parseInt($alt.outerHeight(),10) || 0, sticky_subh = parseInt(sticky_sub.outerHeight(),10) || 0; if(tempPadding > 0 && shrink) { tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2; } else if(sticky_sub.length >= 1) { tempPadding = tempPadding + non_shrinking + non_shrinking2 - sticky_subh; } else { tempPadding = tempPadding + non_shrinking + non_shrinking2; }
Cheers!
IsmaelHi!
Please remove it then use this filter to add new google fonts: http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/
Edit functions.php, look for this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Pathway Gothic One'] = 'Pathway Gothic One'; $fonts['Roboto Condensed'] = 'Roboto Condensed:400,700'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Pathway Gothic One'] = 'Pathway Gothic One'; $fonts['Roboto Condensed'] = 'Roboto Condensed:400,700'; return $fonts; }
You can now select the fonts on Enfold > General Styling > Fonts panel.
Regards,
IsmaelHey!
@mattmannadesign: Alright. Please post the login details here. We would like to check it. In my installation, the menu or the whole content doesn’t move at all. Maybe, it’s because I’m working on a local server.Best regards,
IsmaelHi!
@markcronin: If I may ask, how did you know that you are really blacklisted by google? There are thousands of enfold users and the file that is being pointed out as the cause of the issue is jquery.js, as stated by the op above, is use by WordPress itself.Best regards,
IsmaelHey!
I checked the page and the buttons are not inline. Did you fix this?
EDIT: Looks like it is only inline on larger screens. There’s just not enough space to accomodate both buttons on the 1/3 column on smaller screens. Try to center align them.
Regards,
IsmaelHi!
Add this to the functions.php file:
add_action('wp_footer', 'ava_auto_click'); function ava_auto_click(){ ?> <script> (function($){ $(window).load(function() { $('.categoryname_sort_button').trigger('click'); }); })(jQuery); </script> <?php }
Change the “categoryname” to the name of the category that you want to display initially on page load. Remove browser cache before testing the page.
Cheers!
IsmaelHi Lev!
Thank you for using Enfold.
We need to see the actual page with the issue. Please post the url here. I’m not sure what you meant by this:
I Add the line that open a shortcode/template builder element to the functions.php
Best regards,
IsmaelHey!
Use this in functions.php file to completely remove the date:
add_action('wp_footer', 'ava_custom_script_mod', 10); function ava_custom_script_mod(){ ?> <script> (function($){ $('.news-headline').each(function() { $(this).find('.news-time').remove(); }); })(jQuery); </script> <?php }
Cheers!
IsmaelHey!
You need to edit the file via FTP or your cpanel. Look for it inside wp-content > themes > enfold > js folder. :)
Cheers!
IsmaelHi arlenebirt!
Thank you for using Enfold.
Unfortunately, this is the limitation of the category sort function. Every premium themes I know of have this limitation because they’re using the same isotope script. The only workaround is to show all items on the page and disable the pagination.
Regards,
IsmaelApril 15, 2015 at 4:39 am in reply to: Enfold Layout – Breadcrumb only above and normal page heading/headline #428658Hi!
Yes, I guess this a design choice and it seems to have work for more than 100,000 users of avia themes. Anyway, it’s not that difficult to modify or remove the title with css. You can also use filter and action hooks to completely remove it from the breadcrumb bar. If you can provide a screenshot on how you want your normal page to look, maybe we can help. Remove the default title with this on functions.php:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); // remove default title function avf_title_args_mod($args,$id) { $args['html'] = "<div class='{class} title_container'><div class='container'>{additions}</div></div>"; return $args; }
Cheers!
IsmaelHey!
It seems to work fine on my installation. Please post the login details here and set it as a private reply. We would like to check it. If possible, please contact the plugin for more info regarding the WooCommerce Restrict Categories extension.
Use dropbox or mediafire to attach the plugin zip file.
Cheers!
IsmaelHey!
I’m sorry but that slide is not included in the theme demo package. :/
I’ll ask Kriesi if he can send it to you.
Cheers!
IsmaelApril 15, 2015 at 4:17 am in reply to: WooCommerce's categories aren't shown on a Product Single Page #428646Hi!
The screenshots are expired so we can’t see the images. Anyway, I tried this on my installation and the category widget displays fine. Did you use the advance layout builder to build the products?
Cheers!
IsmaelHi!
Please post the login details here. We would like to check it. Did you add any custom modifications inside the functions.php file?
Regards,
IsmaelApril 15, 2015 at 4:11 am in reply to: Portfolio grid layout not consistent in the number presented #428643Hi!
Glad it is fixed. Some browsers deal with width values containing decimal places differently. That’s why it is doesn’t render properly on firefox. If you want to apply the fix specifically to Firefox browsers, use this:
.avia-mozilla #top .no_margin.av_one_sixth { width: 16.6555555555%; }
or this:
.avia-mozilla #top .no_margin.av_one_sixth { width: 16.6444444444%; }
Regards,
IsmaelHey!
Aside from the 4th slide, there is a scroll down arrow. I think it’s enough to tell users that there are contents below the slider. You can make it more prominent by changing its style:
#top .scroll-down-link { height: 60px; width: 80px; margin: 0px 0 0 -40px; line-height: 60px; position: absolute; left: 50%; bottom: 20%; color: #FFF; text-align: center; font-size: 70px; z-index: 100; text-decoration: none; text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4); -webkit-animation: avia_fade_move_down 2s ease-in-out infinite; -moz-animation: avia_fade_move_down 2s ease-in-out infinite; animation: avia_fade_move_down 2s ease-in-out infinite; }
Regards,
IsmaelApril 15, 2015 at 3:56 am in reply to: Images don't resize well in IE9, likely related to responsive design #428639Hey!
Please try this in the Quick CSS field:
.avia-msie .flex_column div a img { width: inherit; max-width: 100%; height: auto; }
If it doesn’t work, use this:
.flex_column div a img { max-width:100%; height: auto; } @media screen {.flex_column div a img { width: auto }}
Remove browser cache before testing the page.
Regards,
IsmaelApril 15, 2015 at 3:48 am in reply to: How to disable captions on images in masonry gallery on a mobile device #428636Hey!
Hmm.. This is the code that is causing the issue:
.av-inner-masonry-content.site-background { display: none; }
I removed it and the caption is now working on desktop view.
Cheers!
IsmaelApril 15, 2015 at 3:42 am in reply to: Need to do a clean install of Enfold? Can't edit anything. #428633Hi!
I checked the site and it is already set to 192M. What happens when you deactivate the plugins? What is the theme that you use before Enfold? You should probably delete it to remove any remaining options from the old theme.
Regards,
IsmaelApril 15, 2015 at 3:36 am in reply to: Styling und Einstellungen zur Farbe werden nicht umgesetzt #428632Hi!
From what I understand, you want to change the body background? Is that correct? Please set it on Enfold > General Styling > Body Background panel.
Best regards,
IsmaelHey!
The header should still be in the middle after that. Did you add any html tags inside the layer slider? Please update the theme to 3.1.3.
Cheers!
IsmaelHey!
The fix seems to work fine when I checked it on my installation. The content doesn’t move to right before and after the preload. If it does, it’s barely noticeable. Test on Windows 8 and 7, chrome and firefox. I’ll ask the rest of the support team to check it.
Regards,
IsmaelHi Ink_Eye!
Thank you for using Enfold.
I checked the page but the section on top of the google map is empty even on desktop view. Did you remove it? If possible, please create a test page and a screenshot of the issue.
Cheers!
IsmaelHi!
Please try the solution provided here: https://kriesi.at/support/topic/image-size-error-at-partner-grid-in-internet-explorer/#post-193382
Best regards,
IsmaelHey!
Thank you for using Enfold.
@Guenni007: Thank you for helping out!
@Ink_Eye: Can you please elaborate the issue? Did you add a custom font in the custom.css file? How did you add it? If possible, please provide a screenshot of the elements or text with the custom font issue.Regards,
Ismael -
AuthorPosts