Simple Machine Codes
April 16, 2024, 06:20:42 am
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Welcome to SMC, the best place for your SMF For Free Codes
 
  Home Help Search Arcade Gallery Affiliates Code Index Staff List Calendar Members Login Register  
  Show Posts
Pages: [1]
1  Forum Coding / ZetaBoard Coding / Re: [ZetaBoards] Add Table in Members Area V1[BETA] on: June 19, 2007, 08:54:54 pm
You can post them for other people if you want. I'm trying to not use other people's codes and make my own.
2  Forum Coding / ZetaBoard Coding / Re: [ZetaBoards] Add Table in Members Area V1[BETA] on: June 19, 2007, 08:51:10 pm
Wow man.
3  Forum Coding / SMF For Free Codes / Re: .lixygen forum index view on: June 19, 2007, 08:43:41 pm
Thanks.
4  Forum Coding / SMF For Free Codes / .lixygen forum index view on: June 19, 2007, 04:29:38 pm
Lixygen = Liquid and oxygen combined, lol. Here's what it looks like.

[preview]

Here's what is does:
It removes the gap between each category.

Put this in top of Header if you don't already have it.
Code:
<script src="http://code.jquery.com/jquery-latest.pack.js" type="text/javascript"></script>

Put this in Header below that.
Code:
<script type="text/javascript">
$(document).ready (function(){
// .lixygen by ridikul
$("div.tborder").removeAttr("style");
});
</script>
5  Forum Coding / ZetaBoard Coding / Re: [ZetaBoards] Add Table in Members Area V1[BETA] on: June 19, 2007, 04:21:35 pm
lol, you're already making codes for Zeta? Good job nonetheless. I'm moving my board to Zeta when it's out of Beta.
6  Forum Coding / SMF For Free Codes / Toggle Info Center v2 on: June 15, 2007, 10:29:16 pm
Preview

At the bottom of the board

Description
Now in one link. A little bit smoother. Shorter Code

Put this in headers only if you don't have it.
Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js">

Put this in headers below the code above.
Code:
<script type="text/javascript">
        $(document).ready(function(){
                $("a.hidelink").click(function(){
                        $("div#upshrinkHeaderIC").slideToggle("slow");
                        return false;
                });
        });
</script>

Footers
Code:
<div class="hide-info"><a href="#" class="hidelink">Toggle Info Center</a></div>
7  Forum Coding / SMF For Free Codes / Toggle Info Center on: June 15, 2007, 11:36:30 am
My first code ever guys.

Description
Adds links at the bottom of the board that show and hide the info center when clicked. I might make them both one link in the future, but for right now, it's 2.

EXAMPLE

Put this in your CSS at the bottom.

Code:
.hide-info {
        margin: 0 auto;
        padding: 5px;
        text-align: center;
}

Put this at the top of your header.

Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>

<script type="text/javascript">
        $(document).ready(function(){
                $("a.hidelink").click(function(){
                        $("div#upshrinkHeaderIC").hide("slow");
                        return false;
                });
                $("a.showlink").click(function(){
                        $("div#upshrinkHeaderIC").show("slow")
                        return false;
                });
        });
</script>

Put this at the top of your footer.

Code:
<div class="hide-info"><a href="#" class="hidelink">Hide Info Center</a> <a href="#" class="showlink">Show Info Center</a></div>
Pages: [1]
Powered by EzPortal
Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum

Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy