Tool bar fade
Page 1 of 1
Tool bar fade
Hi all i have read this post and was over the moon that i could make the toolbar fade but when putting the code in my JS i found it did not work for me
can some one tell me why this is not working please?
Much thanks Ape
Rideem3 wrote:You can already remove the search and share links by putting this in your CSS:
- Code:
#fa_search, #fa_share {
display: none !important;
}
You can even change the toggle type to slide, fade, etc:
Put this in your CSS StyleSheet:
- Code:
#fa_right.welcome #fa_menu ul {
display: none;
}
And this in a JavaScript placed in all pages for the slide effect:
- Code:
$(window).load(function () {
$('#fa_welcome').click(function () {
$('#fa_menulist').slideToggle();
});
});
Or this for a fade effect:
- Code:
$(window).load(function () {
$('#fa_welcome').click(function () {
$('#fa_menulist').fadeToggle();
});
});
can some one tell me why this is not working please?
Much thanks Ape
Last edited by APE on February 10th 2013, 11:53 pm; edited 1 time in total
Re: Tool bar fade
Rideem3 wrote:Did you put the CSS in as well?
Yes this in the CSS
- Code:
#fa_right.welcome #fa_menu ul {
display: none;
}
and this in the JS
- Code:
$(window).load(function () {
$('#fa_welcome').click(function () {
$('#fa_menulist').fadeToggle();
});
});
Re: Tool bar fade
it has nothing removed off the tool bar at allRideem3 wrote:Remember it will only work for the one that says "Welcome Username". Not notifications.
Also is JavaScript codes management activated>
I do not wish to remove the things off the tool bar all i want to do is have it fade away when clicked
and im using the js settings for other things so yes it is on Rideem
Re: Tool bar fade
its ok i have fixed it lol
had to do it over again for some strange reason i had a dot in the code like this .
Solved with thanks
had to do it over again for some strange reason i had a dot in the code like this .
Solved with thanks
Similar topics
» how make a colored text fade into another using a hover code? (using css transitions)
» Fade and light images
» Fade and light images
» Category color fade effect
» How to fade background image so links/text is visible? (USING jQuery)
» Fade and light images
» Fade and light images
» Category color fade effect
» How to fade background image so links/text is visible? (USING jQuery)
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum