Forum Replies Created
-
AuthorPosts
-
Curious to know, did you find a solution?
Got the same problem :)
It’s not really an option to make a reset of Enfold, I would consider that too dangerous close to our launch :/ .
I made a child theme with many custom css lines. Don’t see any that should interfere negatively with the accordion, though. Didn’t touch that one specifically.
I made a few lines in the functions.php and added a custom 404.php. No changes to the theme files besides that.
These are the lines in the child theme functions.php:
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /* REMOVES KRIESI LINK IN THE SOCKET */ add_filter("kriesi_backlink","new_link"); function new_link(){ $kriesi_at_backlink = ""; return $kriesi_at_backlink; } /* REMOVES IMAGE FILE NAME ON HOVER LANDING PAGE HOTSPOTS */ function add_custom_tooltip(){ ?> <script> jQuery(window).load(function(){ jQuery('a').removeAttr('title'); jQuery('img').removeAttr('title'); }); </script> <?php } add_action('wp_footer', 'add_custom_tooltip'); /* PLACES SEARCH IN HAMBURGER MENU ON MOBILE */ add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 ); function avf_add_search( $items, $args ) { if ($args->theme_location == 'avia') { $search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object- page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level- 5">'.get_search_form(false).'</li>'; $items = $search . $items; } return $items; } /* ALLOWS US TO SET A CUSTOM SHOP PAGE */ add_theme_support( 'avia_custom_shop_page' );
Hi Eliott,
It worked..! Thanks :)
Hm okay. I have tried using several iPhone 5s on Safari and also tried iPhone 6 in safari.
The last button on the page is the only one working for some reason.
Sadly, it didn’t. The alignment is still off and on a retina screen the white pixel line is very visible. Any ideas?
Another problem arose then:
I have the masonry grid on ‘no gap’ but still there are vertical pixel gaps between entries. They are larger in the top and then get narrowed down, which looks very sloppy and isn’t meant to be there, even more with the ‘no gap’ setting. I can’t find the cause of is.
How do I solve this behaviour?
Cheers that worked :)
I changed min-height to 100% to make it responsive and changed z-index to 2 to stay below the text, for anyone interested.
Thanks!
Worked :)
Thank you!
-
AuthorPosts