Recent Posts
SeC Gaming
the Lounge
New Lounge Topic
New Gaming Topic
We've moved to Discord

You are not connected. Please login or register

warned my first day...

+6
Khfan60
chunckylover53
DRGN LRD 1213
Chewy
Tater
Admin
10 posters

Go down  Message [Page 1 of 1]

1warned my first day... Empty warned my first day... 2011-02-24, 11:21

Admin

Admin

http://help.forumotion.com/t86450-different-header-banner-for-each-category-sub-category-page-and-its-topics

tell me...who sees the double post?

http://www.speakeasyclinic.com

2warned my first day... Empty Re: warned my first day... 2011-02-24, 11:26

Tater

Tater

He's a fucking 15 year old mod GET A LIFE F**!!

I'd be banned by now already!

3warned my first day... Empty Re: warned my first day... 2011-02-24, 11:26

Chewy

Chewy

Lolwut? What a douche.

By the way there's probably a way to do that with javascript or PHP.

Like with php if you had a GET or a POST thingy passed on each section you could make a simple if statement.

4warned my first day... Empty Re: warned my first day... 2011-02-24, 11:30

DRGN LRD 1213

DRGN LRD 1213

HAHAHAHAH Your in trouble man!

5warned my first day... Empty Re: warned my first day... 2011-02-24, 11:33

Chewy

Chewy

Here's an example of some PHP code that might do what you're looking for:

Code:


$header=$_GET["forumtype"];
if ($header = "offtopic"){
code for offtopic header
}
if ($header="ontopic"){
code for ontopic header
}
else{
code for default header
}

And then you'd just have to have the URL's of each section have something like
?forumtype=offtopic or ?forumtyple=ontopic after them.

Not sure if the syntax is completely correct I don't know much about PHP.

6warned my first day... Empty Re: warned my first day... 2011-02-24, 11:51

chunckylover53



Well you didn't but i never understood the point of "OMG YOU DOUBLE POST DIEEE".

7warned my first day... Empty Re: warned my first day... 2011-02-24, 12:14

Admin

Admin

unfortunitly chews you cant use php with forumotion.
know a way with java/html? thats what im limited too.

http://www.speakeasyclinic.com

8warned my first day... Empty Re: warned my first day... 2011-02-24, 12:26

Chewy

Chewy

I thought that the homepage was called index.php though...

It's apparently a bit more complex in javascript.

But I found this.
Code:

function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}
Which is a function that grabs stuff from the URL.

And then you could do something like this:

Code:

var forumtype_param = gup('forumtype');

if ( forumtype_param == "ontopic" )
    print code for on topic banner;
else if ( forumtype_param == "offtopic" )
    print code for off topic banner;
else
  print code for default banner;


Which would grab the ?forumtype=value thing from the end of the URL and put the correct banner out.

9warned my first day... Empty Re: warned my first day... 2011-02-24, 12:29

Admin

Admin

nice thanks.

aye the site is php...but they dont allow us to alter it.

http://www.speakeasyclinic.com

10warned my first day... Empty Re: warned my first day... 2011-02-24, 13:02

Khfan60

Khfan60

Wow, fuck him, you should report him to the admin of that site for being an asshole.

11warned my first day... Empty Re: warned my first day... 2011-02-24, 13:09

Admin

Admin

oh thats forumotions main help forum.

http://www.speakeasyclinic.com

12warned my first day... Empty Re: warned my first day... 2011-02-24, 13:11

sheep

sheep

I would report him too.
Maybe you aren't allowed to reply in your topic within a 24 hour period lol


Also, this double sidebar thing is not cool.

13warned my first day... Empty Re: warned my first day... 2011-02-24, 13:14

Admin

Admin

yeah its trial and error atm

http://www.speakeasyclinic.com

14warned my first day... Empty Re: warned my first day... 2011-02-24, 13:15

sheep

sheep

So I see. I'm off today. Want me to whip you up some buttons for the top header thing so you can get rid of the profile area of the side bar?

Also, I have a shit ton of different sidebar codes, and a program thingy, I could whip you up a fancy side bar.

15warned my first day... Empty Re: warned my first day... 2011-02-24, 13:20

Admin

Admin

zomg yes please. pm me the code plx.
ill let you know my theme ideas as well, we can collaborate

...i feel sorry for you now

http://www.speakeasyclinic.com

16warned my first day... Empty Re: warned my first day... 2011-02-24, 13:20

Guest


Guest

What are you doing with all those fancy sidebars sheep? Razz

17warned my first day... Empty Re: warned my first day... 2011-02-24, 13:27

sheep

sheep

Oh, nothing too exciting Mills. Just killing random admin across the netverse and stealing their forums... and their brains...



Ok, let me dredge them up. Or find them again on the internet, or build them again. Not sure what I lost when my computer died. First though, what code do you have to use to put in the sidebar? HTLM or phpp code?

18warned my first day... Empty Re: warned my first day... 2011-02-24, 13:30

Admin

Admin

the are built into the admin panel. but this is the code i used to slide it

First part, goes above the widgets
Code:
<div id="forum-widget" style="height: 13px; width: 16px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; cursor: pointer; position: absolute; background: #f5ebf7 url(http://i42.tinypic.com/vg54yu.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>

Second part goes under the widgets, surrounding them.
Code:
<script type="text/javascript"> jQuery('#forum-widget').insertBefore('#left'); if(my_getcookie('forum-widget')=='0') {jQuery('#left').animate({width:'toggle',height:'toggle',opacity:'toggle'},0); jQuery('#forum-widget').css('background-position','0 0px'); } </script>

so html/jquary

http://www.speakeasyclinic.com

19warned my first day... Empty Re: warned my first day... 2011-02-24, 13:31

Heebs

Heebs

*adopts her best nature show voice* observe the sheep in it's natural habitat, making graphics and splicing forum code. isn't it beautiful?

lol i always thought you should do website design for a living, but i can understand why you don't wanna. <3

20warned my first day... Empty Re: warned my first day... 2011-02-24, 13:32

Admin

Admin

she can do SeC web design for pocket change >.>

http://www.speakeasyclinic.com

21warned my first day... Empty Re: warned my first day... 2011-02-24, 13:37

sheep

sheep

[laughing so hard at heebs right now] I don't know why either. Probably because to be legit, I would have to take courses, which means school. I hate school so bad. And I'm really not the bestest at it.

So, I will do SeC stuff for pocket change... wait... did someone just say something money related? Interesting.

Ok, I'll see what I can do, even though right this moment, that looks confusing as all get out. [slaps self] Wake up sheeplies!

22warned my first day... Empty Re: warned my first day... 2011-02-24, 13:42

Admin

Admin

my laziness is well worth outsourcing design work to interested parties >.>
think it over, throw numbers at me.

http://www.speakeasyclinic.com

23warned my first day... Empty Re: warned my first day... 2011-02-24, 13:44

sheep

sheep

8 million bajillion dollars! [strikes dr. evil pose]

24warned my first day... Empty Re: warned my first day... 2011-02-24, 14:01

The Adli Corporation

The Adli Corporation

boats and hoes.

dont accept anything less.

25warned my first day... Empty Re: warned my first day... 2011-02-24, 14:08

Guest


Guest

pocket change is more than we get paid now. I'm working for theoretical peanuts.

26warned my first day... Empty Re: warned my first day... 2011-02-24, 14:10

sheep

sheep

It's because I'm prettier Mills, sorry to say it.

And I have boobies.

27warned my first day... Empty Re: warned my first day... 2011-02-24, 14:11

Guest


Guest

True. Boobies rock.

28warned my first day... Empty Re: warned my first day... 2011-02-24, 14:33

Heebs

Heebs

sheeptastic wrote:It's because I'm prettier Mills, sorry to say it.

And I have boobies.

LOLLERSKATES

29warned my first day... Empty Re: warned my first day... 2011-02-24, 14:36

Guest


Guest

Boobies + Skates = Hot.

30warned my first day... Empty Re: warned my first day... 2011-02-24, 14:38

Heebs

Heebs

you're into that boogie nights shit, eh? lol

31warned my first day... Empty Re: warned my first day... 2011-02-24, 14:39

Guest


Guest

I can see the hotness in it. Of course some short shorts and revealing tops would be needed. I see it that way at least.

32warned my first day... Empty Re: warned my first day... 2011-02-24, 14:42

Heebs

Heebs

hotpants with the knee high tube socks? LOL

33warned my first day... Empty Re: warned my first day... 2011-02-24, 14:46

Guest


Guest

Not big on the socks. But I get your image. Pigtails fit that image too.

34warned my first day... Empty Re: warned my first day... 2011-02-24, 15:01

sheep

sheep

And Miley Cyrius?

35warned my first day... Empty Re: warned my first day... 2011-02-24, 15:06

Admin

Admin

>.> shes 18 right?

http://www.speakeasyclinic.com

36warned my first day... Empty Re: warned my first day... 2011-02-24, 15:09

sheep

sheep

You know who I think would do it best? Alicia Keys. She's hot as all get out. I vote her most beautifulest of all womenz.

37warned my first day... Empty Re: warned my first day... 2011-02-24, 15:14

Guest


Guest

I'm not into Alicia Keys. She's good looking, but not my type.


Now Miley.... =P

38warned my first day... Empty Re: warned my first day... 2011-02-24, 15:15

Zillah

Zillah

most the really good looking girls i know arent famous, tbh

39warned my first day... Empty Re: warned my first day... 2011-02-24, 15:15

Admin

Admin

my two votes are prominently highlighted in the sexiest woman alive thread

http://www.speakeasyclinic.com

40warned my first day... Empty Re: warned my first day... 2011-02-24, 15:18

Guest


Guest

I'm too lazy to look those up. Care to share here?


Scarlet Johansen in Iron Man 2 made me melt. She did this leg wrap thing around a soldier. I was so jealous.

41warned my first day... Empty Re: warned my first day... 2011-02-24, 15:20

Heebs

Heebs

there are far too many beautiful women in this world for me to choose just one, same goes for the menz. i do have particular favorites, however. like Michael Fassbender, Eric Bana and Tom Hardy. *drool*

wait, weren't we talking about women? woops. my bad.

42warned my first day... Empty Re: warned my first day... 2011-02-24, 15:20

sheep

sheep

She's so beautiful, Scarlet is.

Maybe Alicia is too old for your tastes these days Mills.

Heebs and I actually know one of the most beautiful women in the world. Too bad she doesn't believe us. Hell, I didn't want my boyfriend anywhere near her in case he got ideas.

43warned my first day... Empty Re: warned my first day... 2011-02-24, 15:23

Guest


Guest

Heebs have you seen Time Traveler's Wife? Eric Bana ass all over that flick.

The chick in that movie is hot too. Not sure what her name is.

44warned my first day... Empty Re: warned my first day... 2011-02-24, 15:26

Heebs

Heebs

yes sheep, Liss is the most purdiest lady ever.

and it's Rachel McAdams, Mills. i have seen this movie, i didn't much care for it. but Eric Bana was hoooooooot.

45warned my first day... Empty Re: warned my first day... 2011-02-24, 15:26

Admin

Admin

Spoiler:

and

Spoiler:

http://www.speakeasyclinic.com

46warned my first day... Empty Re: warned my first day... 2011-02-24, 15:27

Guest


Guest

That sounds familiar.


Marissa Tomei is a hottie for an older chick. I like her.

47warned my first day... Empty Re: warned my first day... 2011-02-24, 18:39

Khfan60

Khfan60

Ashley Tisdale is pretty hot.

Sponsored content



Back to top  Message [Page 1 of 1]

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