Forum Replies Created
-
AuthorPosts
-
Hi!
Thank you for the update.
First, set the height of the header on Enfold > Header Layout > Header layout panel. Look for Header Size then select the custom pixel value option. Adjust the height then add this on Quick CSS or custom.css:
strong.logo.bg-logo { display: none; }Best regards,
IsmaelHi Olligator!
Thank you for using the theme!
From what I understand, you want a fixed header. Is that correct? You can change the behavior of the header on Enfold > Header Layout > Header Behavior. Enable the Sticky Header.
Best regards,
IsmaelJuly 6, 2014 at 2:45 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #287612Hey!
Thank you for the update.
I checked the link and the title is already “Screenings”. Please remove browser cache then reload the page a few times.
Best regards,
IsmaelHey!
Thank you for the update.
You can enable the Header Title on Enfold > Header Layout panel. Set the Header Title and Breadcrumbs settings. If that is not what you’re looking for, a screenshot will help.
Best regards,
IsmaelHi Andrea!
As always, thank you for using the theme!
Did you place the masonry element on a column layout? If yes, please remove the column then let the masonry element span through the whole width of the container. There should be at least 4 columns on the masonry element.
Regards,
IsmaelHi!
Thank you for the update.
First, you need to add a unique selector for each sliders. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_theme_support('avia_template_builder_custom_css');http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Edit the sliders then add a unique css selector on “Custom Css Class” field. Add hide-mobile on those elements that you want to hide on mobile device and hide-desktop for those that you want to hide on desktop view. Use css media queries to alter their presence on different view port:
@media only screen and (min-width: 990px) { .hide-mobile { display: none !important; } } @media only screen and (max-width: 989px) { .hide-mobile { display: block !important; } .hide-desktop { display: none !important; } }Regards,
IsmaelHi Mkieling!
Thank you for using the theme!
We don’t have any official tutorial for the layer slider but you can go to youtube and search for it. Sample of a video tutorial can be found here: http://www.youtube.com/watch?v=WB3Xyc_QDRM
Regards,
IsmaelHi OpenEyeMedia!
Thank you for using the theme.
Did you use a plugin to add category on pages? Please add this on functions.php:
add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 5, 1); function avia_change_breadcrumb($trail) { if(is_page()) { global $post; $front = avia_get_option('frontpage'); $blog = avia_get_option('blogpage'); if($post->ID == $blog || $post->ID == $front) return $trail; $category = get_the_category($post->ID); if(!empty($category)) { $home = $trail[0]; $last = array_pop($trail); $trail = array(0 => $home); foreach($category as $key => $data) { $link = '<a href="'.get_category_link($data).'">'.$data->name.'</a>'; $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; $trail[] = $link; } $trail[] = $last; } } return $trail; }Cheers!
IsmaelHi!
Thank you for the update.
Where do you want to place the search form? If you want to position it to the right of the header. Add this on Quick CSS or custom.css:
#advanced_menu_toggle + form#searchform { position: absolute; right: 0; top: 10px; }You should probably hide it on mobile device. Add this code:
@media only screen and (max-width: 989px) { #advanced_menu_toggle + form#searchform { position: absolute; display: none !important; } }Regards,
IsmaelJuly 4, 2014 at 7:23 am in reply to: Getting Enfold audio mp3 player to work when viewing on an iphone or iPad #287053Hey!
No, the settings will remain intact as long as you didn’t modify any of the theme files. Did you modify the shortcodes.js file? Yes, it will be overwritten when you update the theme. Extract the code that you added in order to fix the mp3 audio player before updating the theme. Add it again after. Regarding the layer slider, did you deactivate the default layer slider? You don’t really have to buy the plugin because it is already included on the theme package.
Regards,
IsmaelHi!
You can change the caption title font size to make room for the caption text below. Add this on Quick CSS or custom.css:
@media only screen and (max-width: 479px) { .responsive #top .slideshow_caption h2 { font-size: 1em; } }Yes, it is possible to set a minimum height for the slider but it will stretch the images into unpleasant proportions. You can also try the full screen slider. Or use both, show the fullwidth easy slider on desktop then hide it on mobile device and show the fullscreen slider instead. You can do it via css media queries.
Cheers!
IsmaelHey masuurikas!
Thank you for using the theme.
Unfortunately, this particular request is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.
Regards,
IsmaelJuly 4, 2014 at 7:03 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #287048Hey killyman!
Thank you for using the theme.
Please refer to Dude’s response here: https://kriesi.at/support/topic/enfold-and-the-event-calendar-plugin/#post-174332
Add this code on functions.php:
add_filter('avf_title_args', 'fix_events_page_title', 10, 2); function fix_events_page_title($args,$id) { if (get_query_var('post_type') == 'tribe_events' && !is_single()) { if((tribe_is_upcoming() || tribe_is_past())) { $args['title'] = 'Events List'; } else if(tribe_is_showing_all()) { $args['title'] = 'List all events'; } else { $args['title'] = 'Screenings'; } } return $args; }Best regards,
IsmaelJuly 4, 2014 at 6:56 am in reply to: Change number of posts/columns displayed in post slider on mobile version #287047Hey!
Thank you for the update.
The screen resolution of the the device you’re using spans up to 960px. Please try this:
@media only screen and (max-width: 960px) { .avia-content-slider .slide-entry { width: 100%; } }Best regards,
IsmaelHi!
I thought you’re using the default table element of the theme. Anyway, the table looks ok when I checked it on a mobile device. You just need to scroll in order to see the remaining content.
Regards,
IsmaelHi!
Glad it works. You can actually apply a background on the menu. Use this:
.html_header_top #top .av_menu_left .main_menu { background: yellow; }Best regards,
IsmaelHi!
Again, we would like to thank you for translating the file. Try using the html entity of the percent symbol. Please refer to this link: http://www.freeformatter.com/html-entities.html
Cheers!
IsmaelHey!
You can decrease the font size of the menu items then decrease the padding further:
@media only screen and (max-width: 1140px) { .main_menu ul:first-child > li > a { padding: 0 7px; font-size: 12px; } }Cheers!
IsmaelHi Andrea!
Thank you for using the theme!
Please edit js > avia.js, find this code on line 1198:
if(transparent) { if(st > 50) { header.removeClass('av_header_transparency'); } else { header.addClass('av_header_transparency'); } }Replace it with this:
if(transparent) { if(st > 600) { header.removeClass('av_header_transparency'); } else { header.addClass('av_header_transparency'); } }Remove browser cache then reload the page a few times.
Regards,
IsmaelHi!
The iPad device has a screen resolution of 1024x768px. Please try this:
@media only screen and (max-width: 1025px) { /* Add your Mobile Styles here */ .hidden-desktop {display:block !important;} .visible-desktop {display:none !important;} }Cheers!
IsmaelHey two_worlds!
What is the plugin that you’re using? Please try this on functions.php:
add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1); function disable_google_map_api($load_google_map_api) { $load_google_map_api = false; return $load_google_map_api; }I’m not sure if this is going to work. I’ll ask Dude to check the thread.
Regards,
Ismael-
This reply was modified 11 years, 7 months ago by
Ismael.
Hey!
Thank you for using the theme!
Not sure why the site is not loading on my end. I’ll ask the rest of the support team to check the page. Where are you hosting the site?
Cheers!
IsmaelJuly 3, 2014 at 6:04 am in reply to: I have a problem with the correct display on category pages #286502Hey!
I’m really sorry but we can’t provide any further support for this plugin. You may need to investigate this particular issue on your own or hire someone to fix the compatibility issues of the plugin with the theme.
Thank you for your understanding.
Best regards,
IsmaelHey!
Not sure why it’s not working by default but please add this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) { #advanced_menu_toggle, #advanced_menu_hide { right: 10px; display: block; } }Best regards,
IsmaelJuly 3, 2014 at 5:57 am in reply to: Firefox and IE do not correctly displa sidebar dotted border #286499Hey!
The border looks fine on Firefox 30.0. This is the screenshot on my end:

Best regards,
IsmaelHey!
Please post the login details here and set it as a private reply. We would like to check it.
Best regards,
IsmaelHi!
Did you modify anything on the theme files? The permalink structure is incorrect, you set it to custom then add /gallery on the field. I corrected it but it hasn’t affected the masonry gallery as expected. The elements is still not storing the gallery images. This is the test page: http://rebornhair.com.au/wp/gallery-test/
Best regards,
IsmaelHey!
Thank you for the update.
Must be a plugin conflict. Please deactivate all plugins then test it again. Try logging out. If possible, please create another user and give it administrator access. Test this user account.
Regards,
IsmaelHey DaddyDizz!
Thank you for visiting the support forum!
1.) You can disable the featured image for each post, just tick the option below the featured image metabox. Another thing that you can do is to add this on Quick CSS or custom.css:
.single div.big-preview.multi-big, .single .blog-meta { display: none; }2.) I’m not entirely certain what you mean. Can you please elaborate?
Best regards,
Ismael -
This reply was modified 11 years, 7 months ago by
-
AuthorPosts
