-
AuthorPosts
-
September 18, 2015 at 8:46 pm #505767September 21, 2015 at 5:16 am #506185
Hey Slade,
I’m not sure what you are trying to do there, if you want the arrow to show for a Color Section all you have to do is to tick the Display a scroll down arrow box in element options, or are you trying to add it to another element?
Thanks,
RikardSeptember 21, 2015 at 5:20 am #506189If you look at the screenshot example you can see the right (blue) “active” Tab Title has a down arrow attached to the bottom. Then if you go to the provided link you can see I have duplicated everything except I don’t know how to add the down arrow to the bottom of the Active Tab button.
September 21, 2015 at 2:45 pm #506449Hi!
this link you have provided in your first post: http://kriesi.at/themedemo/?theme=enfold-overview
does not show any bottom arrow element on active tab for me. Could you provide us with an example link so we can check it?Would be also helpful to provide us admin access, so we can take a deeper look into the elements you have used. Post login details here as private reply.
Cheers!
AndySeptember 21, 2015 at 2:49 pm #506451Hey!
Please try adding following code to functions.php file in Appearance > Editor
function add_custom_target(){ ?> <script> jQuery(window).load(function(){ jQuery('.compare-table .tab.active_tab').append('<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span>'); }); </script> <?php } add_action('wp_footer', 'add_custom_target');
Regards,
YigitSeptember 21, 2015 at 8:38 pm #506666Hi Yigit! Thanks. I placed your code into my child-theme function.php file but nothing changed.
I am sending admin access – if you can take a look and make sure I did it correctly that would be great.
Thanks!
September 21, 2015 at 8:56 pm #506676Hey!
I have added following code to bottom of Style.css file of your child theme
.compare-table .border-extra-arrow-down { top: 41px; } .compare-table .av-extra-border-inner { background-color: #4A7FA8; } .compare-table .active_tab .av-extra-border-element { display: block; } .compare-table .av-extra-border-element { display: none; }
and changed the code in Functions.php file to following one
function add_custom_target(){ ?> <script> jQuery(window).load(function(){ jQuery('.compare-table .tab').append('<div class="av-extra-border-element border-extra-arrow-down"><div class="av-extra-border-outer"><div class="av-extra-border-inner"></div></div></div>'); }); </script> <?php } add_action('wp_footer', 'add_custom_target');
Cheers!
YigitSeptember 21, 2015 at 8:58 pm #506678Yigit…I have no idea what they are paying you but it isn’t enough!! You are amazing!!
Thank you thank you!!
September 21, 2015 at 9:06 pm #506680 -
AuthorPosts
- The topic ‘Bottom arrow element on Active Tab’ is closed to new replies.