Forum Replies Created
-
AuthorPosts
-
I adjusted your code to the following so it still works when the header shrinks when scrolling:
/* Show Title + Logo */ .logo, .logo a { overflow: visible !important; } .logo .subtext { color: #fff; float: left; margin-left: 20px; width: 250px; z-index: 999; font-size: 40px; } .logo img { float: left; }
Thank you,
It is a client page.. here is the link
That didn’t really work and using the widget method also didn’t give the right results.
Your colleague gave me this code to insert the social share buttons inside the Title Container. Can we not adjust this code to implement custom code instead?
/* Enable Social Share Buttons */ add_filter('avf_title_args', 'avia_add_social_toolbar_template_builder', 10, 2); function avia_add_social_toolbar_template_builder($args, $id) { ob_start(); avia_social_share_links(array(), false); $social = ob_get_clean(); $args['additions'] .= $social; return $args; }
Perfect.. that’s the one.
I need to do some more styling but it is inside the Title Container :-)Thank you,
Thanks Andy,
Yes, we are using Enfold but that still sounds a bit like abracadabra to me.
Could you provide me with the code?Thank you,
Link inside private section
Thank you,
Hi Yigit,
I don’t want them inside the content, I would still want them to be inserted inside the title container.
How do I achieve this today? Is there not a similar function like we used to have or at least a similar function where I can then add the shortcode to?March 26, 2015 at 1:50 pm in reply to: Child theme Style sheet doesn't show changes ( Version ? ) #418488Hi Rikard,
It turned out that we had Google PageSpeed running on the whole server.
Thank you,
March 25, 2015 at 6:30 pm in reply to: How To Add Social Share Buttons To Bottom Of Menu Sidebar #418054Hi Yigit,
That worked and I added the following to css:
/* Header Social Share Box Adjustment */ #header .av-social-sharing-box { z-index: 999; position: absolute; bottom: 5px; } #header .av-share-box .avia-related-tooltip { display: none !important; } /* Hide Header Social Share Box for Mobile Devices */ @media only screen and (max-width: 767px) { #header .av-social-sharing-box { display: none; } }
March 25, 2015 at 9:52 am in reply to: How To Add Social Share Buttons To Bottom Of Menu Sidebar #417630Hi Ismael,
Thank you for your reply but that doesn’t work. http://www.ybemastudios.com
I needed to add a z-index to make the share box work properly but your code completely removes the menu on mobile view.Is there not a way to inject the social bar inside the #header_main rather then after the navigation?
March 24, 2015 at 5:37 pm in reply to: How To Add Social Share Buttons To Bottom Of Menu Sidebar #417209This reply has been marked as private.March 23, 2015 at 10:46 pm in reply to: Social Share Buttons Under Main Menu In Left Side Bar #416773Perfect. Thank you,
March 23, 2015 at 9:40 pm in reply to: Social Share Buttons Under Main Menu In Left Side Bar #416735This reply has been marked as private.March 23, 2015 at 9:35 pm in reply to: Social Share Buttons Under Main Menu In Left Side Bar #416730This reply has been marked as private.March 23, 2015 at 9:10 pm in reply to: Social Share Buttons Under Main Menu In Left Side Bar #416704Hi Yigit,
I added this code but it broke the site.
Tried variations of it but without success.add_action( 'ava_after_main_menu', 'enfold_custom_header_share' ); function enfold_custom_header_share() { echo do_shortcode( '[av_social_share title='Share this entry' style='' buttons='']' ); }
-
AuthorPosts