Forum Replies Created
-
AuthorPosts
-
Hi,
It is really very rare that a caching plugin will cause any performance issue. If it does you can always try a different one that best suit the way your site is setup. We recommend using the W3 Total Cache plugin however there are more options you can check it out here.
Best regards,
VinayHey Dee007,
Thank you for the kind words :)
1. Do you need the content in the right side to align where the grey arrow is? Yes there the theme adds default padding and it is intended to. Would you mind posting us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)
2. Normally if the images size is 1366×768 or more it will look good.
3. The page width can be changed from Enfold > General layout > Dimensions
Feel free to experiment with boxed layout as well under the Layout tab.Let us know if there is anything es
Best regards,
VinayHi,
It is not a theme feature. I suspect that this is a 3rd party plugin issue. Please disable the plugin from Appearance > Plugins
To find which plugin is causing the conflict please follow these steps:
1. Go to your plugins page > Deactivate all active Plugins
2. Update WordPress and Enfold to latest version if you have not.
3. Make sure all the plugins are updated.
4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.We await the results of your plugin compatibility test.
Thanks for your cooperation :)
Best regards,
VinayHi,
A plugin conflict is causing this issue.
To find which plugin is causing the conflict please follow these steps:1. Go to your plugins page > Deactivate all active Plugins
2. Update WordPress and Enfold to latest version if you have not.
3. Make sure all the plugins are updated.
4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.We await the results of your plugin compatibility test.
Thanks for your cooperation :)
Best regards,
VinayHey Slade,
To edit the default 404 page please edit Enfold/includes/error404.php file
Alternatively you can use a plugin like https://wordpress.org/plugins/search.php?q=404+page
Best regards,
VinayOctober 29, 2016 at 8:02 pm in reply to: Using Fullscreen Slider with Video – Need rotating captions #705623Hi,
It’s not clear if you need any further help on this issue.
If you require any assistance please feel free to elaborate and share a precise link to the page with the issue so we can inspect it and help you better :)Best regards,
VinayHey nancyT,
Thank you for reaching out to us.
Please try https://wordpress.org/plugins/content-views-query-and-display-post-page/Hope it helps :)
Best regards,
VinayHey lmanney,
They look the same for me.

If you still need to make changes please use the below css in Quick CSS
#top .avia_ajax_form .text_area {
font-weight:200!important;
}Best regards,
VinayOctober 29, 2016 at 7:45 pm in reply to: Got a question mark sign (looks like a missing picture) #705608Hey Belcuore,
Not sure why it’s happening. I created a test page and it seem to be fine.
Please recreate the page with proper opening and closing html tags and it should work fine.
Best regards,
Vinay-
This reply was modified 9 years, 3 months ago by
Vinay.
October 29, 2016 at 6:58 pm in reply to: how can i set the grid to the same background color like the color area above? #705587Hi,
Glad we could help! We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
VinayOctober 29, 2016 at 4:37 pm in reply to: how to change the color of the validation error messages in Contact Form 7 ? #705551Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
div.wpcf7-validation-errors { border: 2px solid #f70000!important; }
Best regards,
VinayHey webcami,
Thank you for the kind words. While adding the image from the media library in the attachment options on the right side please select a large image size.

If you still have any issues Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
VinayHey corneliaboehm,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
h1.av-special-heading-tag { background: rgba(0,0,0,.5); }Best regards,
VinayHi,
Glad we could help!
We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
VinayHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
h1.av-special-heading-tag{ text-shadow: 1px 1px #000000 }Best regards,
VinayHi,
Glad this is sorted! It will help us a lot if you rate our theme on themeforest https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
VinayHey JeeBar,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
/* Multi color menu items*/ #avia-menu .menu-item:nth-child(1) { background-color: gold; } #avia-menu .menu-item:nth-child(2) { background-color: red; } #avia-menu .menu-item:nth-child(3) { background-color: green; } #avia-menu .menu-item:nth-child(4) { background-color: grey; } #avia-menu .menu-item:nth-child(5) { background-color: black; } #avia-menu .menu-item:nth-child(6) { background-color: yellow; } #avia-menu .menu-item:nth-child(7) { background-color: purple; } #avia-menu .menu-item:nth-child(8) { background-color: blue; padding-right:20px!important; } #avia-menu .menu-item:hover:before { content: ''; position: absolute; top: 0; right: 0; bottom:0; left: 0; background-color: rgba(0,0,0,.5); } /* Submenu height */ #top #wrap_all .av-main-nav ul > li > a { line-height: 40px; }We do have documentation section but at the moment we do not cover the css class names but if you still like to have a look at it please refer to http://kriesi.at/documentation/enfold/
Best regards,
VinayHi,
Please try adding this at the very end of your themes / child themes functions.php file:
function toggle_submenu(){ ?> <script> (function($){ jQuery(window).load(function() { jQuery('#mobile-advanced .menu-item a').on('click', function(){ jQuery(this).children('.submenu').css('display','block!important'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'toggle_submenu');Add the below css in Quick CSS:
@media only screen and (max-width: 767px) { #mobile-advanced .submenu{ display: none; }}Best regards,
VinayHi,
Glad we could help!
We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
VinayHi!
You are welcome :)
When you select the image in media library change the size in “ATTACHMENT DISPLAY SETTINGS”
Regards,
VinayHi,
Glad it’s sorted! To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
VinayHi,
Glad we could help!
We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
VinayHi,
Please check the below video to add widgets
There are more helpful videos here https://www.youtube.com/results?search_query=enfold+sidebar+widgets
If that does not help please post us your complete login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
VinayHey jelle,
If the page that show in google search is a 404 you do not have to worry as google will remove such pages from showing up in the result automatically. You can also remove them manually using the google webmaster tools
https://support.google.com/webmasters/answer/6332384?hl=en
https://support.google.com/webmasters/answer/1663419?hl=en
Best regards,
VinayHey jelle,
To hide URL from google you can use a plugin like YOAST SEO and hide it or use the google webmaster tools to achieve the same.
https://support.google.com/webmasters/answer/6332384?hl=en
https://support.google.com/webmasters/answer/1663419?hl=enComing to customizing the grid looks it’s not clear what you are trying to achieve please post us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)
Best regards,
VinayHey Tarakbc,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.news-excerpt { margin: -30px 0 0 46px; }
Best regards,
VinayHi,
Please enable custom css class name for builder elements kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Add a custom css class name to the according you want to style.
If you still have trouble please get back to us with the custom class name you added and post a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)
Best regards,
VinayHey mjakubicek,
Please try using a plugin like https://wordpress.org/plugins/w3-total-cache/ to minify the js and css files.
Best regards,
VinayHi,
Here are the class names you can target.
font-color – .widget_nav_menu .menu-item a
text-transform – .widget_nav_menu .menu-item a
active background color – .widget_nav_menu .menu-item .current-menu-item
hover color – .widget_nav_menu .menu-item a:hover
hover background color – .widget_nav_menu li a:hoverBest regards,
VinayHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { .av-image-caption-overlay-center p:last-child { margin-top: 3pc!important; }}Best regards,
Vinay -
This reply was modified 9 years, 3 months ago by
-
AuthorPosts
