Forum Replies Created
-
AuthorPosts
-
Hey!
There is a left margin that is pushing the form to outer right of the website when viewing on smaller screens. You can use media queries to adjust the left margin on different sizes:
@media only screen and (min-width: 768px) { #mc_embed_signup { margin-left: 250px; } }Cheers!
IsmaelHey primdogg!
Unoptimized images can really slow down a website. You might want to reduce the size a bit without affecting the quality. Use cache and minify plugins. Common plugins used are:
http://wordpress.org/plugins/w3-total-cache/
http://wordpress.org/plugins/bwp-minify/Cheers!
IsmaelMarch 23, 2014 at 4:59 am in reply to: Deciding för column width when using Enfold Content Elements? #241732Hey abedia!
I’m sorry but what do you mean by “decide for the column width”? You can insert the table element inside the column layouts. Please post a screenshot of what you’re trying to do.
Best regards,
IsmaelHi!
Is this the page? http://www.kindbo.com/blogg/
Please post the login details here and set it as a private reply. We would like to check it. We don’t usually support third party plugins, you might want to contact the plugin author.
Cheers!
IsmaelMarch 23, 2014 at 4:36 am in reply to: Comment Moderation always on and "generic featured image" hover text #241728Hey starshyne!
1.) Did you disable these settings on Settings > Discussion?
An administrator must always approve the comment
Comment author must have a previously approved commentPlease check the setting “Comment Moderation” and increase the value.
2.) Can you please give us a link to the actual page with the issue?
Regards,
IsmaelHey!
Thank you for using the theme. I hope you’re doing great.
The login details are incorrect. Please check.
Regards,
IsmaelHey Konstantin!
Unfortunately, you have to use a plugin for https. Anyway, you can request the feature here: https://kriesi.at/support/enfold-feature-requests/
You’ll have 5 votes every month which you can use to vote for a certain feature. You can use these votes on a single feature or spread them between several requests.
Regards,
IsmaelHi Viramedia!
The additional portfolio settings and image gallery are for the portfolio ajax preview. This is an example of the ajax portfolio: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/
Regards,
IsmaelHey intosuwo!
You can use this on Quick CSS to change the font weight on mobile devices:
@media only screen and (min-width: 768px) { body, body p { font-weight: bold; } }There are other texts or string that you might need to target specifically.
Cheers!
IsmaelHey!
You can use this on the child theme’s functions.php:
function avia_change_image_size_array() { global $avia_config; $avia_config['imgSize']['gallery'] = array('width'=>900, 'height'=>600 ); // images for portfolio entries (2,3 column) avia_backend_add_thumbnail_size($avia_config); } add_action( 'init', 'avia_change_image_size_array', 1);Cheers!
IsmaelHi!
1.) If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 #header_main .av-special-heading { margin-top: 90px; }2.) You can manually type it right before the paragraph or sentence that you want to use as excerpt. Refer to this link: http://codex.wordpress.org/Customizing_the_Read_More
3.) No, sorry but you can’t use layer sliders inside column layouts.
Please watch these videos to learn more about the theme: http://vimeo.com/channels/aviathemes
Refer to this link for more info: http://kriesi.at/documentation/enfold/
Best regards,
IsmaelHey!
You’re not using the latest version of Enfold. Please download 2.6.2 from your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Cheers!
IsmaelHey!
Have you tried to reconfigure the header options? Some users’ problem was fixed by simply changing a few options on Enfold > Header then saving it. Did you copy the header.php file on the child theme folder? If yes, then delete the header.php on your child theme folder. Get the new header.php file from the parent theme folder and copy it to your child theme folder. You can see the header element codes like logo, menu etc on includes > helper-main-menu.php.
Do you mind posting the login details here? Set it as a private reply.
Cheers!
IsmaelHi!
The image link is broken. Please post it again. The website is not loading on my end, weird. Let me ask Yigit and the rest of the support team to check this again.
Best regards,
IsmaelHey Richard_Byford!
Can you please give us a link to the website? If I am not mistaken, it is a third party plugin that is causing the issue. Please deactivate all plugins, see if the issue is fixed.
Cheers!
IsmaelHi!
Do you mind posting the login details here? We would like to check it. Set it as a private reply.
Best regards,
IsmaelHi!
Please try this one:
.avia-section { min-height: 60px; position: static; }Cheers!
IsmaelHey!
Yes, that is possible. Just add this on the child theme’s functions.php:
/* * Register frontend javascripts: */ if(!is_admin()) { add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); } function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false ); wp_enqueue_script( 'avia-default-child' ); }Create a js folder with the avia.js file inside.
Regards,
IsmaelHi!
@biklops: I checked the website but I don’t see any social icons there. Did you just hide it via CSS or the new header options work?
@drjill: We’re really sorry about that. We’re just trying to improve the users’ overall experience with Enfold by giving you more options like the ones we added for the header options. A lot of users were requesting for css modifications like header height, logo position, social icons position, phone numbers etc because they are not available on the previous header options. Now, you can do all those things without adding any css or changing any code. There will be certain setbacks but we hope that you appreciate Kriesi’s efforts.Anyway, you can recopy the header.php file from the parent theme folder and replace the one that you have on your child theme. You can find most of the header codes like logo, menu etc on includes > helper-main-menu.php file.
Regards,
IsmaelHey phil!
Have you tried to recreate the color section? Please give us a link to the website. A screenshot explaining the issue will help.
Regards,
IsmaelHi romano2!
AFAIK there is no option that you can append on the youtube url to force the video to play hd. You can only set the videos that you uploaded on your account to play as hd.
Go to YouTube and sign into your account (if you’re not already signed in). Look for the Youtube Settings > Playback > Video playback quality > enable the “Always play HD on fullscreen (when available)”.
Regards,
IsmaelHey ckosheff!
1.) You can add something like this on Quick CSS to adjust the position of the caption:
.avia-caption { bottom: 40px; left: 20%; }2.) Please edit includes > loop-index.php, replace all of it with this code: http://pastebin.com/cYBSQghy
Cheers!
IsmaelHi silviouk!
You can close the gap between two ad widget using this on Quick CSS or custom.css:
.avia_partner_widget:last-child { margin-top: -20px; }Cheers!
IsmaelMarch 22, 2014 at 5:30 am in reply to: Problem with Partner Logos in greyscale – coloured at mouseover #241516Hi!
That is possible but the tooltip will pop out over and over again. You can add something like this on Quick CSS or custom.css:
.avia-tooltip { margin-top: 80px; margin-left: 5px; }Cheers!
IsmaelHi!
I’m not sure what you mean but Dude said to that the patch has been included on Enfold 2.6.2. All you need to do is download the latest version of the theme on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Best regards,
IsmaelHi Finlando!
Please use this instead: I’m not sure why you have duplicated variables for the same font:
add_filter('avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Oranienbaum'] = 'Oranienbaum&subset=latin,cyrillic'; return $fonts; } add_filter('avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Roboto Condensed'] = 'Roboto Condensed:700,400,300&subset=latin,cyrillic'; return $fonts; }Best regards,
IsmaelHey!
The link formatted posts should automatically link to the specified url. Make sure that you added the link on the text editor like this for example: http://kriesi.at
Regards,
IsmaelMarch 22, 2014 at 1:46 am in reply to: How to stop the logo in fixed header from becoming too small? #241468Hey!
Sorry, you didn’t mention anything about that. We can only give support for the actual theme.
Regards,
IsmaelMarch 22, 2014 at 1:43 am in reply to: Using Simple Share Buttons Adder Plugin Hiding All Content #241464Hi themeforesttony!
Maybe, you can just hide the button using css. What pages do you want the buttons not to show? Regarding the plugin shortcode not working, please contact the plugin author.
Best regards,
IsmaelHey!
Please use this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) { .responsive #header .social_bookmarks { right: -60px; position: absolute; } #top .social_bookmarks li a { width: 20px; min-height: 20px; font-size: 15px; } #top .social_bookmarks li { width: 25px; } #top .social_bookmarks li a { line-height: 20px; } }Best regards,
Ismael -
AuthorPosts
