how to make a width adjusting widget
4 posters
Page 1 of 1
how to make a width adjusting widget
How do you make a widget that allows the users to set the width of the forum? im not so sure of how that code would look
Re: how to make a width adjusting widget
You could add this and get done with it. This will leave you with default width or when wanted with widgets.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: how to make a width adjusting widget
i mean like, i want it so that the members can adjust the width to whatever they like
Re: how to make a width adjusting widget
Something like this?
http://tokenatoracademy.topicboard.net/forum like the one of this forum?
http://tokenatoracademy.topicboard.net/forum like the one of this forum?
Re: how to make a width adjusting widget
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: how to make a width adjusting widget
the widget shows up on the page, but whenever i click set, nothing happens, any pointers on something i might be doing wrong or something i left out? i used the javascript code from the first guy and the widget source from the second guy
Re: how to make a width adjusting widget
Create a Widget:
- Code:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#forumwidth").click(function(){
var a=eval(document.getElementById("selectwidth").value);
var b=0;
jQuery("body#phpbb").animate({width:a},800, "linear");
if(a==1050){b=1;}
if(a==1100){b=2;}
if(a==1200){b=3;}
if(a==1300){b=4;}
setKuki('bodylinewidthkuki',b,365);
});
});
</script>
<center><div style="text-align: center;"><input type=submit id="forumwidth" value="Set">
<select id="selectwidth">
<option selected>980</option>
<option>1050</option>
<option>1100</option>
<option>1200</option>
<option>1300</option>
</select>
</div></center>
- Code:
jQuery(function(){
jQuery(window).load(function(){
if(parseInt(getKuki('bodylinewidthkuki'))==0){
jQuery("table.bodylinewidth").width(980);
}
if(parseInt(getKuki('bodylinewidthkuki'))==1){
jQuery("table.bodylinewidth").width(1050);
}
if(parseInt(getKuki('bodylinewidthkuki'))==2){
jQuery("table.bodylinewidth").width(1100);
}
if(parseInt(getKuki('bodylinewidthkuki'))==3){
jQuery("table.bodylinewidth").width(1200);
}
if(parseInt(getKuki('bodylinewidthkuki'))==4){
jQuery("table.bodylinewidth").width(1300);
}
});
});
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: how to make a width adjusting widget
You're welcome.
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
» How to Make a Census Widget
» how to make a jump to widget
» Widget remove from posts view and signature width problem
» How can i make this widget on my forum ?
» Make widget outside body?
» how to make a jump to widget
» Widget remove from posts view and signature width problem
» How can i make this widget on my forum ?
» Make widget outside body?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum