Forum Replies Created
-
AuthorPosts
-
Hi!
My bad. Add this to the Quick CSS field:
@media only screen and (max-width: 989px) { .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet .main_menu .avia-menu ul #menu-item-search { display: block; position: absolute; top: 0; right: 60px; } .responsive.html_mobile_menu_tablet .main_menu .avia-menu ul li{ display: none; }}Regards,
IsmaelHi!
Alright. I didn’t notice the background colour right away. Add this to the functions.php file:
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ $(window).on("resize", function (event) { if (event.originalEvent === undefined) { var alien = 'alien'; console.log(alien); } else { var human = 'human'; console.log(human); } }).resize(); })(jQuery); </script> <?php }Remove browser cache then reload the page. You can try the suggestion above to adjust the background position.
Regards,
IsmaelHey!
Please try this code:
.avia-safari .logo img { height: 146px; min-height: 146px; }Regards,
IsmaelHey!
I created a mega menu for you. Set it as Enfold Main Menu if you want to check it: http://www.harlech.org/wp-admin/nav-menus.php
Add this to the Quick CSS field to set the capitalization of the text to normal.
h2.av-special-heading-tag { text-transform: none; }Cheers!
IsmaelHi!
It’s not possible to have full width elements when using the boxed layout, it is possible but it will take a lot of css modifications. It’s easier to use the stretched layout and create boxed containers inside the color section. Insert a color section add a custom id attribute in Section ID field. Use it to modify the style of the section container. Can you please provide a screenshot of the design that you want?
Cheers!
IsmaelHey marinusvanschagen!
Thank you for using Enfold.
You don’t have to install the Layer Slider plugin because it is already included in the theme. Once the plugin is deactivated, the home page is working as expected. http://www.progarant.nl/
Cheers!
IsmaelHi!
I think it’s better if you use the Contact Form 7 plugin. Set up the Mail 2 feature to create a different autoresponder content. http://contactform7.com/setting-up-mail/
Cheers!
IsmaelHi codecreative!
Thank you for using Enfold.
Yes, you need to remove the menu then add a custom link. There’s no option to change the link or url of menu items even on the default WP menu.
Regards,
IsmaelHi!
Can you please provide a screenshot of the title that you’re trying to change? I edited the H1 element in the Advanced Styling panel and it works fine. Note that advanced styling panel doesn’t contain all the elements on the theme so you still have to add custom css modifications if necessary.
Regards,
IsmaelHi stiklewert!
Thank you for using Enfold.
Is the issue still happening? The menu is now white so I think the theme options are now working. If you can’t see the changes right away, try to hard refresh (CTRL + F5) the page.
Best regards,
IsmaelMarch 17, 2015 at 9:20 am in reply to: Does Enfold support Flyouts – Off Canvas Custom Content for WordPress #412811Hi Erich Nolan!
Thank you for using Enfold.
I’m sorry but we don’t have access to the plugin so we can’t tell you for sure. I think it’s best to contact the plugin author. The theme does use the wp_head and wp_footer function, most themes do.
Cheers!
IsmaelMarch 17, 2015 at 9:16 am in reply to: Need help using alternate header menu on Pages & Blog #412809Hey!
Include the full URL plus the anchor name. For example:
http://swaddlephotography.com/#ravesinstead of just “#raves”.
Regards,
IsmaelHi!
Thank you for using Enfold.
Please update the .htaccess file by flushing the permalinks. Go to Settings > Permalinks panel then click the “Save” button once. You can refer to this link for more info: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems
Regards,
IsmaelHi!
I’m referring to the actual model of the phone. Most android phones have inferior or mediocre stock browsers included by default which lacks features and fails to handle modern web technologies. Unfortunately, the theme does not support and is not compatible with those browsers. That’s why we’re asking you to use Chrome or Firefox.
Cheers!
IsmaelHey!
The site loads fine on an iPod Touch, safari browser. Maybe, iPhone 4’s memory can’t handle the whole site that’s why it crashes. Have you tried it on iPhone 5 or 6? Can you please create a test page with masonry gallery included? We would like to test it.
Cheers!
IsmaelHey!
Please try to add this to the Quick CSS field to remove the border, it flickers when you hover over the images:
#top .av-masonry-entry:hover { border: 0; }Cheers!
IsmaelMarch 17, 2015 at 8:43 am in reply to: Is it possible to make the small logo that appears on scroll bigger and centered #412801Hi!
1.) Adjust the shrinked logo with this:
.home .header-scrolled .logo { background-size: 40px 40px; }2.) You can try this:
.header-scrolled #header_main .container, .header-scrolled .main_menu ul:first-child > li a, .logo a, .logo a img { height: 70px !important; line-height: 70px !important; max-height: 70px !important; }Cheers!
IsmaelMarch 17, 2015 at 8:35 am in reply to: No separating vertical line between 1st and 2nd items in the "full width menu" #412799Hi!
Yes, we can see the issue but we can’t reproduce it on our installation. Is the site live? Please post the website url here. We need to inspect it. Try to add this to the Quick CSS field:
#top .av-subnav-menu > li:first-child a { border-left: 1px solid; }Regards,
IsmaelHey!
Replace it with this:
@media only screen and (max-width: 1024px) { .av-catalogue-title, .av-catalogue-price { position: relative; }}Please remove browser cache then reload the page.
Best regards,
IsmaelHi!
The plugin works fine on our installation. If you want to do manual coding, you can edit code includes > helper-main-menu.php, look for this code:
$avia_theme_location = 'avia';Add the is_tax function, something like this:
if(!is_tax('portfolio_entries', 'economics')) { $avia_theme_location = 'avia'; } else { $avia_theme_location = 'avia4'; }Replace “economics” with your own portfolio category. Add this to the functions.php:
add_action('init', 'ava_add_custom_menu'); function ava_add_custom_menu() { register_nav_menus(array('avia4' => __('Enfold Custom Menu', 'avia_framework'))); } ava_add_custom_menu();Create a new menu on Appearance > Menus panel then set it as Enfold Custom Menu.
Cheers!
IsmaelHey!
From what I understand, you want to limit the height of the images in the ajax slide? Is that correct? Please use this (Note that this will also stretch tall images.):
#top .ajax_slide li img { height: 325px; }Please provide a screenshot so that we can understand the issue better.
Best regards,
IsmaelMarch 17, 2015 at 6:02 am in reply to: Avia layout builder is loading the website rather than the editor #412778Hey!
Please try to switch the builder to debug mode. http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Copy the whole shortcode then place it inside a new page. You can unpublished the old then temporarily replace it with the newly create page. Let us know if the issue persists. If possible, please update the theme to version 3.1.
Cheers!
IsmaelHi!
Thank you for the update. If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The new inquiries is a slightly off topic. Screenshots will help. Thank you.
Cheers!
IsmaelMarch 17, 2015 at 5:54 am in reply to: Contact Form changes email with Email Protection Code… #412775Hi!
No, unfortunately not, we don’t have enough information regarding the issue. Is the site using CloudFlare as well? Please contact them regarding the issue. The theme doesn’t have any email protection feature so it’s either the CDN or a third party plugin that injects the script in the contact form shortcode.
Regards,
IsmaelHey!
The problem is the custom margin of the separator isn’t dynamic, 30px top margin on desktop is the same 30px top margin on mobile devices, so you have to use css media queries to remove or adjust them on different screen sizes. If you don’t want to add custom modifications via media queries, you can remove the custom margin.
Regards,
IsmaelHey!
If you don’t mind, please provide a screenshot on how you want the header with the cart icon to look on mobile device. It will greatly help us. Thank you.
Best regards,
IsmaelHey!
There is no one giant step that does it. It’s a lot of little steps. :)
You can set the background size to 100% but it will stretch the image. Edit the color section, add a unique id attribute in the Section ID field. Use “custom-section” for example. Add this to the Quick CSS field:
@media only screen and (max-width: 767px) { #custom-section { background-size: 100% 100%!important; }}Or you can choose not to show the background image on mobile devices:
@media only screen and (max-width: 767px) { #custom-section { background-image: none !important; }}Regards,
IsmaelHi!
Thank you for the info. Please ask your hosting provider for the php info page and if it’s not of any trouble ask them to increase the max_input_vars setting. We would like to check the php settings. Also, you’re not using the latest version of the theme. Please update to version 3.1.
Cheers!
IsmaelHey christopherheath!
Thank you for using Enfold.
1.) Since you’re using large background images, I think we’ll both agree that they won’t fit on mobile device or will not look exactly the same as they do in desktop view. What you can do is to adjust the image focus, on the eagle for example, you can focus on the head or eyes. Edit the color sections then add a unique ID attribute to the Section ID field. Let’s start with the eagle section, use “eagle-section” for example. Adjust the background position using this on Quick CSS field:
@media only screen and (max-width: 767px) { #eagle-section .av_parallax { background-position: 30% 50% !important; }}Use different css media queries for different screen sizes.
2.) You have to double tap the buttons on mobile devices because they have a hover state. If you don’t want that behaviour, toggle the Icon Visibility.
Best regards,
Ismael -
AuthorPosts
