Hide Widgets (Arrow/icon not showing)
2 posters
Page 1 of 1
Hide Widgets (Arrow/icon not showing)
As Title Says for some reason i cant get the Hide Widget Icon To show up,but when i do hide it the the show arrow appears, can someone see if they can help fix it?
Also i hope i explained the problem good enough.
The Code for the Widget is
Also yes i did remove the background color code from the script.
Also i hope i explained the problem good enough.
The Code for the Widget is
Also yes i did remove the background color code from the script.
- Code:
<div id="forum-widget" style="height: 16px; width: 16px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; cursor: pointer; position: absolute; background: url(http://s13.postimg.org/7701ui3pf/arrow_medium_left.png) no-repeat 0 -13px;" ;" onClick="jQuery('#left').animate({width:'toggle',height:'toggle',opacity:'toggle'},1000); if(my_getcookie('forum-widget')=='0') { my_setcookie('forum-widget','1',0,0); jQuery('#forum-widget').css('background-position','0 -13px'); } else { my_setcookie('forum-widget','0',1,0); jQuery('#forum-widget').css('background-position','0 0px'); }"></div>
Re: Hide Widgets (Arrow/icon not showing)
Did you create the bottom widget that the tutorial said to create?
https://help.forumotion.com/t78898-show-hide-widgets-script
https://help.forumotion.com/t78898-show-hide-widgets-script
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
i did. the show icon appears but not the hide icon.SLGray wrote:Did you create the bottom widget that the tutorial said to create?
https://help.forumotion.com/t78898-show-hide-widgets-script
Re: Hide Widgets (Arrow/icon not showing)
You do have the top widget at the top and the bottom widget at the bottom with no widgets outside of those two widgets?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
This is how i have it on my forumSLGray wrote:You do have the top widget at the top and the bottom widget at the bottom with no widgets outside of those two widgets?
Top
Radio
Radio
Recent Topic
Bottom
Re: Hide Widgets (Arrow/icon not showing)
Please post your forum's link.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
Link http://fastforum.forum-board.net/SLGray wrote:Please post your forum's link.
Re: Hide Widgets (Arrow/icon not showing)
Try this:
- Code:
<div id="forum-widget" style="height: 16px; width: 16px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; cursor: pointer; position: absolute; background: url(http://s13.postimg.org/7701ui3pf/arrow_medium_left.png) no-repeat 0 -13px;" onClick="jQuery('#left').animate({width:'toggle',height:'toggle',opacity:'toggle'},1000); if(my_getcookie('forum-widget')=='0') { my_setcookie('forum-widget','1',0,0); jQuery('#forum-widget').css('background-position','0 -13px'); } else { my_setcookie('forum-widget','0',1,0); jQuery('#forum-widget').css('background-position','0 0px'); }"></div>
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
nope icon still doesnt show up, i even tried the one that came with the script.SLGray wrote:Try this:You had an extra ;"
- Code:
<div id="forum-widget" style="height: 16px; width: 16px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; cursor: pointer; position: absolute; background: url(http://s13.postimg.org/7701ui3pf/arrow_medium_left.png) no-repeat 0 -13px;" onClick="jQuery('#left').animate({width:'toggle',height:'toggle',opacity:'toggle'},1000); if(my_getcookie('forum-widget')=='0') { my_setcookie('forum-widget','1',0,0); jQuery('#forum-widget').css('background-position','0 -13px'); } else { my_setcookie('forum-widget','0',1,0); jQuery('#forum-widget').css('background-position','0 0px'); }"></div>
Re: Hide Widgets (Arrow/icon not showing)
Do you have other JavaScripts? If you do remove them and see if the code works. Save the other widget codes.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
i disabled the javascripts and still nothing.SLGray wrote:Do you have other JavaScripts? If you do remove them and see if the code works. Save the other widget codes.
Re: Hide Widgets (Arrow/icon not showing)
Disabling it will not work. You have to remove the other JavaScripts to test it.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
i removed them and still not working, imo it's odd how the show icon appears but not the hide icon.SLGray wrote:Disabling it will not work. You have to remove the other JavaScripts to test it.
Re: Hide Widgets (Arrow/icon not showing)
Could you send me a test account by private message?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
i see the tip of the icon is there a way to move it down? also i dont know how to make a test account.SLGray wrote:Could you send me a test account by private message?
Re: Hide Widgets (Arrow/icon not showing)
The issue it where you changed 0px to -13px.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
yup and now can be marked as solved, unless i can ask another question here or do i have to make a new topic?SLGray wrote:The issue it where you changed 0px to -13px.
Re: Hide Widgets (Arrow/icon not showing)
If it is related to this issue, you can, but if not start a new topic.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Hide Widgets (Arrow/icon not showing)
it's kind of related to this, but mark this as solved and i'll make a new topic.
Re: Hide Widgets (Arrow/icon not showing)
Ok.
Topic Solved & Locked
Topic Solved & Locked
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» Arrow Icon for forum
» Widgets showing twice
» Widgets Not Showing Up
» How to hide widgets in topic ?
» Show/Hide Widgets Script
» Widgets showing twice
» Widgets Not Showing Up
» How to hide widgets in topic ?
» Show/Hide Widgets Script
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum