Advertise Here

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Josh[y]

Pages: [1] 2 3 4 ... 32
1
General Chat / Nothing else to do, so I decided to come here
« on: April 28, 2010, 10:21:26 pm »
Well I got bored waiting for people to reply on the other forums I'm on, and something made me think of coming here lol...

So here I am! I might stick around for a little bit just to help people. I'm way better in HTML, CSS, and jQuery than I was when I use to come here all the time haha.

2
SMF For Free Codes and Support / Re: [Code] Completely hide info center
« on: November 24, 2009, 11:52:12 pm »
I take it that this will hide like the Who's on line, Recent Post and stuff like that.  Is that correct?
Correct :)

3
SMF For Free Codes and Support / Re: [Code] Completely hide info center
« on: November 24, 2009, 09:59:38 pm »
Very true.
I will hopefully be learning jQuery sometime either this school year or next.
I might be posting more codes when I think of cooler things to do, and how to do them :P

4
SMF For Free Codes and Support / Re: [Code] Completely hide info center
« on: November 24, 2009, 08:06:50 pm »
Pretty nice code :)

You can just have it:
Code: [Select]
$('#upshrinkHeaderIC').parent().hide();
Its exactly the same as changing the css to display: none; :)

Also, if you want, you can add a copyright to your code...since it is your code after all :P

Ah, thanks Moose :P
Im just learning jQuery so I just used what I know. I didnt even think about the simple way to do it :P

5
General Support / Re: how do i add Redirect on some boards?
« on: November 24, 2009, 08:05:06 pm »

Wouldnt you have to do
Code: [Select]
</a><a href="url goes here">Board Name</a>
?

No.  It is not necessary
It redirects fine as it is.
The url for the board gets closed right after the the redirect url.  (note the 2 </a>s in the source code)
If you put that extra </a> in you wind up with 3 of them  - 1 just before the redirect url and 2 after it.   ;)

Oh ok. Nevermind me then :P

6
General Support / Re: how do i add Redirect on some boards?
« on: November 24, 2009, 01:57:08 pm »
how do i add Redirect on some boards?

To make it so that when they click on the Boards Name it goes to a specific page:

Admin > Boards
Modify the Board
For the Board's Name do this:

Code: [Select]
<a href="url goes here">Board Name</a>

If you want it to open in a new window/tab:

Code: [Select]
<a href="url goes here" target="_blank">Board Name</a>



Wouldnt you have to do
Code: [Select]
</a><a href="url goes here">Board Name</a>
?

7
SMF For Free Codes and Support / [Code] Toggleable box with matching style
« on: November 24, 2009, 11:02:16 am »
Demo: http://jquerycodes.smfforfree3.com/index.php

This code just adds a box anywhere on your site that, when you click the heading, it slides closed. And when clicked again, it slides open. Just a simple idea I had, might be useful to some people :)

First and foremost, you MUST have this at the top of your header.
Code: [Select]
<script src="/jquery.js"></script>

Then, you can put this anywhere in your headers or footers.
Code: [Select]
<script type="text/javascript">
$(document).ready(function() {
    $('#title').click(function() {
        $('#content').slideToggle("slow");
    });
});
</script>

And finally, the box code. This can go anywhere in your headers or footers as long as it comes after the jQuery code above.
Code: [Select]
<table border="0" width="100%" cellspacing="0" cellpadding="5" class="tborder" style="margin-top: 1px;">
    <tr>
        <td id="title" class="catbg2" align="center">
            Title here
        </td>
    </tr>
    <tr>
        <td id="content" class="windowbg" align="left" valign="top">
            Content here
        </td>
    </tr>
</table>

If you want the box closed by default.
To have to box closed by default, use this jQuery code instead of the other on I posted.
Code: [Select]
<script type="text/javascript">
$(document).ready(function() {
    $('#content').css("display","none");
    $('#title').click(function() {
        $('#content').slideToggle("slow");
    });
});
</script>

And thats it :)

8
SMF For Free Codes and Support / [Code] Completely hide info center
« on: November 24, 2009, 09:57:25 am »
Demo: http://jquerycodes.smfforfree3.com/index.php

I saw that someone wanted to know how to do this in another thread. I didnt want to bump it because the last post was in march of last year :P

ANYWAYS... This code does exactly what that person wanted. They wanted the info center to not show at all. Since I am just learning jQuery I knew this would be easy so I just wrote the code one of my forums and made sure it worked :P

First and foremost, you MUST have this at the top of your header.
Code: [Select]
<script src="/jquery.js"></script>

After that, you can put this code anywhere in your header.
Code: [Select]
<script type="text/javascript">
$(document).ready(function() {
    $('#upshrinkHeaderIC').parent('.tborder').css("display","none");
    return false;
});
</script>

And thats it! :)

9
Graphics / Re: Request: Rank Images
« on: May 13, 2009, 01:06:20 pm »
Yea, I said I couldnt get the same font

10
Graphics / Re: Request: Rank Images
« on: May 13, 2009, 01:05:14 pm »
Well, I couldnt get the same font...
But heres what I came up with.




The global mod doesnt look much darker... If you want me to make it darker I can ;)

11
Graphics / Re: Request: Rank Images
« on: May 13, 2009, 12:45:33 pm »
I think I could come up with something... What colors do you want?

12
Graphics / Re: New userbar for a comp
« on: February 27, 2009, 10:00:21 pm »
can u make me one just like that but saying staff lounge "no spam" just staff thanks

same color and where it says access admins only make it say staff only in black

I know he already posted something, but I will get to work on something if I can, the part that says "Access= Admins only" was part of the site logo so I might not be able to do it

13
Graphics / New userbar for a comp
« on: February 17, 2009, 01:54:47 pm »
This userbar I made for a competition on another site.
I MIGHT have won with it, but someone else entered something way better xD



P.S. I am not trying to advertize, I just liked the outcome of this and wanted to post it :)

P.P.S. If you want a userbar like this made, PM me

14
Graphics / Re: Spoken's Crown Request Thread
« on: February 16, 2009, 09:35:32 pm »
Ah shoot I read it wrong sorry xD

I will get to it tomarrow

15
Graphics / Re: Game Wager Userbar
« on: February 16, 2009, 04:00:42 pm »
Thats beast Spoken, great job!

Thanks. I also made a banner. I will post that in a minute.

EDIT: Attached the banner. And here are two other userbars I made.






how i make it

I might make a tutorial ;)

Pages: [1] 2 3 4 ... 32