The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

how to make a width adjusting widget

4 posters

Go down

Solved how to make a width adjusting widget

Post by aamir.boyd January 4th 2014, 10:19 am

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
avatar
aamir.boyd
New Member

Posts : 11
Reputation : 1
Language : english

http://destructoracademy.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by TheCrow January 4th 2014, 11:36 am

You could add this and get done with it. This will leave you with default width or when wanted with widgets.
how to make a width adjusting widget Eur3
TheCrow
TheCrow
Manager
Manager

Male Posts : 6913
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by aamir.boyd January 4th 2014, 8:47 pm

i mean like, i want it so that the members can adjust the width to whatever they like
avatar
aamir.boyd
New Member

Posts : 11
Reputation : 1
Language : english

http://destructoracademy.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by Kite Trojan January 4th 2014, 9:17 pm

Something like this? 
http://tokenatoracademy.topicboard.net/forum like the one of this forum?
Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by aamir.boyd January 5th 2014, 12:30 am

yeah, like that, nd wow that place looks cool
avatar
aamir.boyd
New Member

Posts : 11
Reputation : 1
Language : english

http://destructoracademy.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by Kite Trojan January 5th 2014, 1:19 am

I don't know the code yet ,  but I can try to get u the code
Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by aamir.boyd January 5th 2014, 3:45 am

thatd be greatly appreciated thanks
avatar
aamir.boyd
New Member

Posts : 11
Reputation : 1
Language : english

http://destructoracademy.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by SLGray January 5th 2014, 6:47 am



how to make a width adjusting widget Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by aamir.boyd January 5th 2014, 7:33 pm

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
avatar
aamir.boyd
New Member

Posts : 11
Reputation : 1
Language : english

http://destructoracademy.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by SLGray January 5th 2014, 7:45 pm

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>
JavaScript:
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);
    }
    });
    });
Make sure that JavaScript Management is activated.


how to make a width adjusting widget Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by aamir.boyd January 5th 2014, 7:55 pm

kk thanks,  topic solved and locked
avatar
aamir.boyd
New Member

Posts : 11
Reputation : 1
Language : english

http://destructoracademy.forumotion.com

Back to top Go down

Solved Re: how to make a width adjusting widget

Post by SLGray January 5th 2014, 7:57 pm

You're welcome.

Topic Solved & Locked


how to make a width adjusting widget Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum