Forum Replies Created
-
AuthorPosts
-
Hey!
Try with this:
#js_sort_items{text-align: center; } #js_sort_items a, #js_sort_items .text-sep{float:none; display:inline-block; }Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.av-masonry-entry:before { content: attr(title); background: red; position: absolute; width: 100%; height: 100%; z-index: 1000; text-align: center; line-height: 180px; opacity: 0; font-weight: bold; font-size: 24px; } .av-masonry-entry:hover:before { opacity: 1; } .av-masonry-entry:before{ transition: all linear 0.2s; }Cheers!
JosueHey!
Try adding this code to the Quick CSS:
td { background: white !important; vertical-align: top; }Cheers!
JosueHey!
That’s not possible but you can have different elements that appear or hide depending on the screen size, for example you could have two color sections with different IDs (desktop-only, mobile-only), then add this to Quick CSS:
#mobile-only{ display: none; } @media only screen and (max-width: 767px) { #mobile-only{ display: block; } #desktop-only{ display: none; } }Also check:
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/Regards,
JosueHi Kathie!
Try increasing the memory allocated to PHP:
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHPCheers!
JosueHey!
Make sure you are not selecting an accordion image size higher than the actual images.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.gm-style-iw { height: auto !important; }Cheers!
JosueHey Sarah!
That featured is not available at the moment, If you really need it you would have to contact a developer from Envato Studio or Codeable
Also, feel free to request it here as a new feature.
Best regards,
JosueHi Zakkery!
Perhaps you need to change the image settings, you can use this plugin for that:
https://wordpress.org/plugins/simple-image-sizes/Remember to regenerate the thumbnails afterwards.
Cheers!
JosueHey!
I’ll report this issue, in the meantime try adding this at the very end of your theme / child theme functions.php file:
add_filter('avia_google_maps_widget_load_api', '__return_false');Cheers!
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi Tal,
I’m sorry but customization made on kriesi.at isn’t something we can assist. Kriesi specifically mentioned and asked us not to provide the customization as he’d like to write a blog or tutorial on the customization in the future.
Best regards,
JosueHi Franck!
Have you tried simply pasting the table as HTML code?
Cheers!
JosueHey!
Refer to this topic:
https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/#post-260646Regards,
JosueHey Andrew!
This could work, try adding this to functions.php:
function avia_sharelinks_func() { avia_social_share_links(); } add_shortcode('avia_sharelinks', 'avia_sharelinks_func');Then wherever you want the share links to appear use [avia_sharelinks].
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
#advanced_menu_toggle:after { content: "Menu"; font-size: 12px; position: absolute; bottom: -16px; left: 0; right: 0; }Cheers!
JosueSeptember 12, 2014 at 3:26 am in reply to: how to add a sort-by-term-function on top of blog (to switch between categories) #317774Hello!
It is possible but it would require a heavy customization to the theme, unfortunately that’s beyond the scope of the support we can offer. If you really need it you would have to contact a developer from Envato Studio or Codeable.
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.gm-style-iw { height: auto !important; }Cheers!
JosueSeptember 12, 2014 at 3:24 am in reply to: permalinks changed after upgrade – problems with Yoast SEO #317771Hi,
Can you reproduce the same behavior with the default WordPress theme activated?
Cheers!
JosueHi!
This could work, add this to the functions.php file:
add_filter('avf_sidebar_menu_filter', 'avia_add_parent_page_to_sidebar', 10, 3); function avia_add_parent_page_to_sidebar($sidebar_menu, $args, $post) { $sidebar_menu2 = ""; $subNav = avia_get_option('page_nesting_nav'); $the_id = @get_the_ID(); $args = array(); global $post; if($subNav && $subNav != 'disabled' && !empty($the_id) && is_page()) { $subNav = false; $parent = 750; $sidebar_menu2 = ""; if (!empty($post->post_parent)) { if(isset($post->ancestors)) $ancestors = $post->ancestors; if(!isset($ancestors)) $ancestors = get_post_ancestors($post->ID); $root = count($ancestors)-1; $parent = $ancestors[$root]; } $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title'); //enables user to change query args $args = apply_filters('avia_sidebar_menu2_args', $args, $post); //hide or show child pages in menu - if the class is set to 'widget_nav_hide_child' the child pages will be hidden $display_child_pages = apply_filters('avia_sidebar_menu2_display_child', 'widget_nav_hide_child', $args, $post); $children = wp_list_pages($args); if ($children) { $default_sidebar = false; $sidebar_menu2 .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>"; $sidebar_menu2 .= $children; $sidebar_menu2 .= "</ul></nav>"; } } $sidebar_menu .= $sidebar_menu2; return $sidebar_menu; }Change 750 by the ID of the other page (Markets/Products).
Cheers!
JosueSeptember 12, 2014 at 3:04 am in reply to: Restrict Magazine Content Element to Specific Post Type #317764Hello!
It is possible but it would require a heavy customization to the theme, unfortunately that’s beyond the scope of the support we can offer. If you really need it you would have to contact a developer from Envato Studio or Codeable.
Cheers!
JosueHi!
You can prefix the “.single-post” class to the selectors to make them post exclusive.
To change the appearance of the sharing buttons and tooltips, use:
.av-share-box-list, .av-share-box ul li { border-color: red !important; } .av-share-box ul li { background: brown !important; } .av-share-box-list .avia-tt, .av-share-box-list .avia-arrow{ background: blue !important; }Modify as needed.
Cheers!
JosueHi!
Which version of the Yoast plugin are you using?
Cheers!
JosueHey!
Try creating a Page and setting its template as “Archives”.
Best regards,
JosueHello Alvin!
It is possible but it would require a heavy customization to the theme, unfortunately that’s beyond the scope of the support we can offer. If you really need it you would have to contact a developer from Envato Studio or Codeable.
Cheers!
JosueHi Stuart!
Try adding this:
@media only screen and (max-width: 767px) { .custom_content { top: 75px; } }Cheers!
JosueHey!
Try adding this code to the Quick CSS:
body { font: 13px/1.65em 'Open Sans', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif !important; color: #444; -webkit-text-size-adjust: 100%; }Cheers!
JosueHey David!
Yes, you need to empty ‘Displayed Everywhere’ if you want to use custom sidebars on other places.
Best regards,
JosueSeptember 12, 2014 at 2:37 am in reply to: Latest News Widget – Change Thumbnail Size to Fill Column #317726Hey!
Now add this code to the Quick CSS:
.news-thumb { float: none !important; height: auto; width: 100%; } .news-thumb img{ height: auto; width: 100%; float: none !important; }Cheers!
JosueHi!
We are aware of this issue, to fix it go to Appearance > Menus, create and set a new menu as the Enfold Main Menu (Theme Locations).
Regards,
Josue-
This reply was modified 11 years, 7 months ago by
Josue.
-
This reply was modified 11 years, 7 months ago by
-
AuthorPosts
