Forum Replies Created
-
AuthorPosts
-
Hi!
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Regards,
IsmaelHey!
You can set the font size on mobile device with this:
@media only screen and (max-width: 767px) { .av-inherit-size .av-special-heading-tag { font-size: 1em; }}
Cheers!
IsmaelAugust 3, 2015 at 6:18 am in reply to: How do I change the background color or other attributes of the AV toggle? #481879Hi!
Do you want to apply different css styling on two different toggle element? You can turn on the custom css class attribute: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
IsmaelHi!
Adjust the line-height property:
@media only screen and (max-width: 767px) { .pagination_split_post p a { line-height: 50px; }}
Best regards,
IsmaelAugust 3, 2015 at 6:12 am in reply to: Warning: Illegal offset type in isset or empty in …. wpml #481876Hey xxtita!
Thank you for using Enfold.
This is an issue between WPML and blog grid style. Unfortunately, we’re not sure what’s causing the warning. You can hide the warnings by adding this code in the wp-config.php file:
ini_set('log_errors','On'); ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
EDIT: Look for this code then replace it with the code above:
define('WP_DEBUG', false);
Best regards,
IsmaelHey!
Yes, use the code block if it doesn’t work on a text block. Or just make sure that there are no extra spaces in the text editor when you add the shortcode.
Best regards,
IsmaelHey!
I checked the page and the hovered menu item font color is white. Did you fix it?
Regards,
IsmaelHey!
You can use this adjust the space between the masonry columns:
.av-masonry-col-2 .av-masonry-entry { width: 49%; padding-right: 10px; }
Regards,
IsmaelHi!
You can decrease the min width of the menu items on smaller screens:
@media screen and (max-width:1100px) { .av_seperator_big_border .av-main-nav > li > a { min-width: 85px; } }
Regarding the breadcrumbs, you need to adjust your own css modification:
@media only screen and (max-width: 990px) { .title_container .breadcrumb { right: auto; top: 75%; left: 0; margin-left: -2px; }}
Best regards,
IsmaelHey Giles!
Thank you for using Enfold.
Add this in the functions.php file to change the label:
add_filter('avia_social_share_link_arguments', 'avia_change_social_link_args', 10, 1); function avia_change_social_link_args($args) { $args['mail']['label'] = __("Share by Email",'avia_framework'); return $args; }
Best regards,
IsmaelAugust 3, 2015 at 5:32 am in reply to: Unable to change hover font color on main menu, current menu item #481861Hi!
If you don’t mind, we would like to see a screenshot of what you’re trying to do. Use imgur or dropbox.
Cheers!
IsmaelHey!
I’m sorry but we don’t provide support for third party plugins as stated on our support policy. You will have to contact the plugin author to fix the layout. You can try this plugin which offers premium support: https://www.magictoolbox.com/magiczoom/modules/woocommerce/
Cheers!
IsmaelHi!
You can set the Single Post Style to Single post with big preview image. It will automatically add the featured image on top of the title.
Cheers!
IsmaelAugust 1, 2015 at 7:32 am in reply to: Add a sidebar to events using Modern Tribe Events Calendar Pro #481644Hey!
Yes, you’re correct. Use the dynamic_sidebar function then create the sidebar container manually. Something like this: https://kriesi.at/support/topic/sidebar-issue-with-events-pages/#post-407489
//get the sidebar //$avia_config['currently_viewing'] = 'page'; echo "<aside class='sidebar sidebar_right'>"; echo "<div class='inner_sidebar extralight-border'>"; dynamic_sidebar('Programs'); echo "</div>"; echo "</div>";
Cheers!
IsmaelAugust 1, 2015 at 7:28 am in reply to: Is it possible to use Css3 effects on Texts or buttons? #481643Hey!
In the custom css field, add this class attributes:
avia_animate_when_almost_visible pop-up
Go to the Quick CSS field then use this:
.avia-button-wrap.pop-up { opacity: 0; -webkit-transform:scale(.3); -ms-transform:scale(.3); transform:scale(.3); } .avia-button-wrap.pop-up.avia_start_animation { -webkit-animation: avia_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); animation: avia_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); opacity: 1; -webkit-transform:scale(1); -ms-transform:scale(1); transform:scale(1); }
Regards,
IsmaelHey!
You can try to replace it with the strip_tags function: http://php.net/manual/en/function.strip-tags.php
Example:
strip_tags($input, '<br><br/>');
Best regards,
IsmaelHey!
The old facebook like box is deprecated so you will not be able to use it anymore. You can generate a new likebox widget on the fb page plugin generator. Make sure that “Adapt to plugin container width” is enabled: https://developers.facebook.com/docs/plugins/page-plugin
Regards,
IsmaelHi!
You can add this in the Quick CSS field:
.comment_container h3.miniheading, .comment_container .minitext { display: none !important; }
Best regards,
IsmaelHey!
You can override the style with this:
#top .av_font_icon a:before { font-size: 30px; position: relative; left: -8px; top: 5px; }
This is going to work for the icon with the 10px font size.
Regards,
IsmaelHi!
Please try to add this in the Quick CSS field:
.html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main { padding-top: 145px; }
EDIT: I checked the pages again and the gap between the header and the content on all pages is the same. Can you please provide a screenshot?
Regards,
IsmaelHi!
The unwanted post is coming from this plugin: Content Aware Sidebars
Please deactivate it or ask the plugin author why it injects a non existing post.
Cheers!
IsmaelHey!
You don’t have to add custom css class attributes to all elements. Enable it then add css class attributes to the element that you want to modify.
Regards,
IsmaelHey!
Edit the menu item in the Appearance > Menus panel then add a custom css class attribute. You can use the class attribute to change the position of the menu item. Refer to this link: http://wordpress.stackexchange.com/questions/68062/custom-id-for-certain-menu-item
Cheers!
IsmaelHi!
I’m sorry but the table layout that you want is not possible with the table element in the theme. However, you can create the table manually by using a text or code block. Add something like this:
<table style="width: 100%;"> <tbody> <tr> <th colspan="7">Minions Division Cost</th> </tr> <tr> <td>Fundamentals</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> <tr> <td>Fundamentals & Game</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> <tr> <th colspan="7">Reserves Division Cost</th> </tr> <tr> <td>Fundamentals</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> <tr> <td>Fundamentals & Game</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> </tbody> </table>
Best regards,
IsmaelHi!
Correct me if I’m wrong but from what I understand, you want to adjust the height of the shop banner. If you want to reduce the height, you will have to adjust the minimum height which is set to 100px.
#av_product_description { min-height: 20px; }
If you want to increase it, use the height property:
#av_product_description { height: 300px; }
Regards,
IsmaelHey!
That is weird but I can’t reproduce the issue on my own test installation so it’s either a third party plugin or a file modification that is causing the issue. Please try to deactivate all plugins then test it again on IE.
Cheers!
IsmaelHi!
I’m sorry but this is not possible without using the advance layout builder. If you use the default editor, it will render all content inside a container with a fixed or max width. If you’re working on a page, you can modify the page.php file, if this is a post, edit the single.php file.
Regards,
IsmaelHey!
There are permission errors when we check the site:
Failed to load resource: the server responded with a status of 403 (Forbidden) : http://ecoproofbenelux.com/wp-includes/js/tinymce/wp-tinymce.php?c=1&ver=4109-20150505
Please make sure that WP installation have the correct folder/file permission: https://codex.wordpress.org/Changing_File_Permissions#Permission_Scheme_for_WordPress
http://webmasters.stackexchange.com/questions/69692/forbidden-403-for-js-file-on-localhost
Regards,
IsmaelHi!
I don’t think there is a plugin for that. You need to get the link from the Media > Library panel then click the “Insert/edit Link” icon in the text block toolbar. You can also browser through the “Add Media” panel to get the url.
Best regards,
IsmaelHey mexi33330!
Thank you for using Enfold.
I would like to help but when I translate the inquiry it’s a bit unclear:
Hi,
Unfortunately the customer menu does not display made Bestellunge more. What’s wrong there?
For quick help, I’m really thankful :-)
LG mexi
Can you please clarify “Bestellunge” a bit?
Regards,
Ismael -
AuthorPosts