Forum Replies Created
-
AuthorPosts
-
Hi!
Decrease the font of the top menu:
@media only screen and (max-width: 767px) { .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul { float: left; width: auto; text-align: left; margin: 0; position: relative; padding-left: 0; top: 2px; } .sub_menu>ul>li>a, .sub_menu>div>ul>li>a { font-size: 9px; padding: 2px 0; } }
Remove browser cache then reload the page.
Regards,
IsmaelHi!
Which blog style are you currently using? You can use the more tag to limit the excerpt. http://en.support.wordpress.com/splitting-content/more-tag/
Cheers!
IsmaelHey!
It should be fine as long as you enabled the Noindex subpages of archives on SEO > Title & Metas > Sitewide meta settings.
Best regards,
IsmaelHey!
Remove the custom content on mobile view with this:
@media only screen and (min-width: 768px) { .custom_content { display: none; }}
Cheers!
IsmaelHey!
Thank you for the info. Please try to add this on functions.php:
add_action('wp_footer', 'ava_mobile_header', 5); function ava_mobile_header(){ ?> <script> (function($){ $(window).scroll(function() { if($(window).width() <= 989){ var header = $('.html_header_top.html_header_sticky #header'); header.addClass('header-scrolled'); } }); })(jQuery); </script> <?php }
Remove the browser cache then reload the page.
Cheers!
IsmaelFebruary 4, 2015 at 12:45 pm in reply to: Enconding error or ? marks on icon titles (admin/page edit) #390699Hi!
Please try to remove the characters then update the page. Add them again.
Cheers!
IsmaelHi!
You can add html codes on the fullscreen slider’s caption fields. For example:
<img src="IMAGE URI HERE">
Regarding the logo, please remove or adjust this code located on the Quick CSS field:
@media only screen and (max-width: 1000px) { .responsive .logo img { max-width: 300px; height: 100%; }}
Best regards,
IsmaelHi!
Yeah. You’re right. Didn’t notice the video option. Try to use the video shortcode:
http://dtcinsure.com/wp-admin/admin.php?page=layerslider&action=edit&id=6
http://dtcinsure.com/test-page/You can add a poster or video thumbnail attribute: http://codex.wordpress.org/Video_Shortcode
Regards,
IsmaelHi!
Add the !important value:
#top #wrap_all .av-social-link-facebook a{background-color:#37589B !important; color:#fff !important; } #top #wrap_all .av-social-link-twitter a{background-color:#46D4FE !important; color:#fff !important; } #top #wrap_all .av-social-link-gplus a{background-color:#DE5A49 !important; color:#fff !important; }
Best regards,
IsmaelFebruary 4, 2015 at 12:20 pm in reply to: Add image or text at top of homepage between top logo and menu on right #390682Hey!
Replace the code with this:
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "<strong class='logo-title'>Is the Ultimate Alternative to Having a<br> Human Teaching Assistant In a Home &<br> School Environment</strong>"; return $sub; }
We added the br tags. We’ll get back to you after.
Regards,
IsmaelHi!
You can put something like this on functions.php:
function ava_product_category_banner() { if(has_term('artifact', 'product_cat')) { echo "<div class='product_category_banner container_wrap'>ARTIFACT IMAGE HERE</div>"; } else if(has_term('treasure', 'product_cat')) { echo "<div class='product_category_banner container_wrap'>TREASURE IMAGE HERE</div>"; } }
Add the link to the image then change the product category. Below, add this:
add_action('wp_footer', 'ava_product_category', 5); function ava_product_category(){ ?> <script> (function($){ $(window).load(function() { $('.product_category_banner').css('opacity', 1); $('.product_category_banner').prependTo('.container_wrap.template-shop'); }); })(jQuery); </script> <?php }
Go to Enfold > General Styling > Quick CSS field, add this:
.product_category_banner { opacity: 0;; height: 100px; border-bottom: 1px solid gray; background: red; }
You’ll have a fullwidth container on top of the product category page. All you need to do is to adjust the styling and add the images.
Regards,
IsmaelHey!
That is strange. Have you tried removing the 1/1 column? Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelHi!
Please edit the color section then a unique id attribute using the For Developers: Section ID field. Use “custom-section” for example. Add this on Quick CSS;
@media only screen and (max-width: 767px) { .avia-mozilla #custom-section { max-height: 206px; height: 206px; }}
If it doesn’t work, use this:
@media only screen and (max-width: 767px) { .avia-mozilla-35 #custom-section { max-height: 206px; height: 206px; }}
Cheers!
IsmaelHey!
Thank you for using Enfold.
Try to add this on Quick CSS or custom.css to increase the width of the masonry entries on larger screens:
@media only screen and (min-width: 1800px) { .responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry { width: 25.0%; }}
Cheers!
IsmaelFebruary 4, 2015 at 11:09 am in reply to: Mobile Menu and WooCommerce Cart button don't look good #390647Hey!
Try to replace this code with this:
@media only screen and (max-width: 989px) { .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { left: 240px; }}
with this:
@media only screen and (max-width: 989px) { .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { right: 80px; } }
Add this below:
@media only screen and (max-width: 767px) { .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { right: 90px; } }
Regards,
IsmaelHi!
You can add this on Quick CSS to remove the tag title:
.tag h3.post-title.tag-page-post-type-title { display: none; }
Try to add this on functions.php to disable the lightbox for featured images:
function avia_image_slideshow_filter($current_post) { $prepend_image = get_the_post_thumbnail(get_the_ID(), 'large'); $image = ""; if(!$prepend_image) { $image = avia_regex($current_post['content'],'image'); if(is_array($image)) { $image = $image[0]; $prepend_image = '<div class="avia-post-format-image"><img src="'.$image.'" alt="" title ="" /></div>'; } else { $image = avia_regex($current_post['content'],'<img />',""); if(is_array($image)) { $prepend_image = '<div class="avia-post-format-image">'.$image[0]."</div>"; } } } else { $large_image = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'extra_large' ); $post = get_the_permalink(get_the_ID()); $prepend_image = '<div class="avia-post-format-image"><a href="'.$post.'">'.$prepend_image."</a></div>"; } if(!empty($prepend_image) && is_string($prepend_image)) { if($image) $current_post['content'] = str_replace($image, "", $current_post['content']); $current_post['before_content'] = $prepend_image; $current_post['slider'] = ""; } if(is_single(get_the_ID()) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['before_content'] = ""; return avia_default_title_filter($current_post); }
Cheers!
IsmaelFebruary 4, 2015 at 10:50 am in reply to: Icon inside a separator isn't aligned to the middle in iPhone size #390637Hey DROR!
Thank you for the screenshot but we need to see the actual website. Please post the website url here.
Regards,
IsmaelHi!
Yes, the read more tag will only work for blog posts. You can’t use on the advance layout builder.
Best regards,
IsmaelFebruary 4, 2015 at 10:44 am in reply to: Grid Row issue : Top border of small arrow appearing at the bottom of Grid Row #390631Hey!
Please use this code to fix the arrow issue:
#wrap_all + .av-extra-border-element.border-extra-arrow-down { display: none !important; }
Update the theme to 3.0.8.
Regards,
IsmaelHi!
Thank you for using Enfold.
Can you please confirm if this is still happening? Might be a temporary hiccup on the forum server. Please test it again.
Regards,
IsmaelHi!
Please deactivate the theme options translation for now.
if(!function_exists('avia_lang_setup')) { add_action('after_setup_theme', 'avia_lang_setup'); function avia_lang_setup() { if(!is_admin()) { $lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang'); load_theme_textdomain('avia_framework', $lang); } } }
Regards,
IsmaelHi!
We tested this again on our installation and it works fine. Try to increase the value. Change it 15000. Let me know if the scroll animation slows down.
Cheers!
IsmaelHi plavinski!
Thank you for using Enfold.
Please post the table code on pastebin.com. We would like to check it.
Regards,
IsmaelHi!
Have you tried using the shortcode on the default editor? Unfortunately, we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author. The html markup of the shortcode looks like this:
<span class="str-rotate" data-str-animation="fadeIn" data-str-separator="|" data-str-speed="3000"> cool </span>
There seems to be a missing class attribute (rotating, rotating flip etc) which defines the rotation effect:
Regards,
IsmaelHi!
Maybe, we’re not on the same page. Can you please provide a link to the actual page/post? I can see the meta data below the post title: http://dev1.inspiraldesign.co/publications/
Best regards,
IsmaelHi!
In addition, try to place the code first on pastebin.com then paste it again to your editor. Some editors automatically converts symbols to their html entity code.
Cheers!
IsmaelFebruary 3, 2015 at 10:39 am in reply to: Mobile with transparent header social buttons only show boxes #389943Hi!
Glad it worked. Unfortunately, we won’t be able to help you further with ESSB plugin.
Awesome plugin. Mind sharing it? :)
Best regards,
IsmaelHey laptophobo!
Thank you for using Enfold.
Unfortunately, this particular request or modification is more than what we can offer as a support team. This task is beyond the scope of support and is not a theme related issue. Please hire a freelance developer or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress.
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.
Cheers!
Ismael -
AuthorPosts