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.


Topics - Josh[y]

Pages: [1] 2 3 4 ... 7
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 / [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 :)

3
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! :)

4
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

5
Graphics / Game Wager Userbar
« on: February 14, 2009, 09:47:11 pm »
Hey guys, I just decided to make this quick little thing.
Its nothing much but I think its the best ive ever made xD


6
Check out AC:CF Community! Its a place for ALL Animal Crossing: City Folk players!

Whats that?
You dont have Animal Crossing: City Folk?
Thats alright! We have forums for EVERY Animal Crossing game!
Thats right! No matter what AC game you play, you will still be able to post and hang out with a bunch of other members just like you!

So head on over to AC:CF Community today!

7
Code Requests / [request] Hide navigation?
« on: January 27, 2009, 05:48:27 pm »
Ok I know theres a hide tabs code, but is there a way to hide the whole navigation completely?
I dont think it would be too hard... But I dont think its been made so... Ya

Thanks :)

8
General Discussion / SMFForFree 2, 3, and 4?
« on: January 26, 2009, 09:32:05 pm »
Are the newer ones faster?
Or what is the difference?

9
General Support / Gallery question
« on: January 26, 2009, 05:20:38 pm »
Forum Url: http://accfcommunity.smfforfree.com
I added a gallery to my site and enable the watermarks, but I went to one of the pictures and I dont see the watermark. I aligned it to be in the bottom left corner but I dont see it.

10
Stylesheet Codes / [Stylesheet] 31337 Orange
« on: December 12, 2008, 09:35:11 am »
Sorry it took me so long to post this guys. I didnt want to take the time to do it. I dont want to take the time to do it now either but if I dont I wont be ble to start on the green version... So here is the orange!



Live Preview

CSS:
Code: [Select]
/*Links In a Post*/
div.post A
{
           Color:#c17512;
}

#footerarea a
{
color: #efab1a;
}

/* Normal, standard links. */
a:link
{
color: #c17512;
text-decoration: none;
}
a:visited
{
color: #efab1a;
text-decoration: none;
}
a:hover
{
color: #efab1a;
text-decoration: underline;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #c17512;
text-decoration: none;
}
a.nav:hover
{
color: #efab1a;
text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
empty-cells: show;
}

/* By default (td, body..) use verdana in black. */
body, td, th , tr
{
color: #666666;
font-size: x-small;
font-family: verdana, sans-serif;
}

/* The main body of the entire forum. */
body
{

background: url() repeat-x #c25d12;
margin: auto;
        Width: 1012px;
padding: 12px 0px 0px 0px;
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea
{
font-size: 100%;
color: #666666;
background-color: #f1f1f1;
font-family: verdana, sans-serif;
}
button
{
background-color: #f1f1f1;
color: #666666;
font-family: verdana, sans-serif;
}

input, button
{
font-size: 90%;
}

textarea
{

font-size: 100%;
             background:  url();
             background-position: center center;
             background-repeat: repeat;
color: #666666;
background-color: #ffffff;
font-family: verdana, sans-serif;

}

/* All input elements that are checkboxes or radio buttons. */
input.check
{
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 85%;
font-weight: normal;
color: #b8b8b8;
font-family: verdana, sans-serif;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #ffffff;
background-color: #F4F4F4;
}

/* The Big Text */
h1
{
        background-color:#f1f1f1;
        background-repeat:repeat-x;
        padding:4px 15px;
        border: 1px solid #c18912;
       
}

/* No image should have a border when linked */
a img
{
border: 0;
}

/* A quote, perhaps from another post. */
.quote
{
color: #b8b8b8;
background-color: #f1f1f1;
border: 1px dashed #2C2C2C;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}

/* A code block - maybe even PHP ;). */
.code
{
color: #b8b8b8;
background-color: #f1f1f1;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px dashed #2C2C2C;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #b8b8b8;
background: url(http://www.styleyourforum.com/data/309/css0.png) repeat-x;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
line-height: 1.2em;
        margin: 3px;
        margin-bottom: 6px;
        padding: 3px;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{
color: #666666;
background-color: #f6f6f6;
}
.windowbg2
{
color: #666666;
background-color: #f1f1f1;
}
.windowbg3
{
color: #666666;
background-color: #f6f6f6;
}
/* the today container in calendar */
.calendar_today
{
background-color: #FFFFFF;
}

/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
{
color: #666666;
font-style: normal;


background-color: black;
background: url(http://www.styleyourforum.com/data/309/css1.png) repeat-x center center;
padding-left: 1px;
padding-right: 1px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
color: #666666;
font-style: normal;
}
.titlebg a:hover
{
color: #b8b8b8;
}
/* same as titlebg, but used where bold text is not needed */
.titlebg2 a:link, .titlebg2 a:visited
{
color: #b8b8b8;
font-style: normal;
text-decoration: underline;
}

.titlebg2 a:hover
{
text-decoration: underline;
}

/* This is used for categories, page indexes, and several other areas in the forum.
.catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers*/
.catbg , tr.catbg td , .catbg3 , tr.catbg3 td

{

        height:20px;
background: url(http://www.styleyourforum.com/data/309/css2.png) #ffffff center center;
        color: #c18512;
text-align: center;
}
.catbg2 , tr.catbg2 td
{
        height:20px;
background: url(http://www.styleyourforum.com/data/309/css2.png); 
              background-color: #ffffff;
color: #c18512;
}
.catbg, .catbg2, .catbg3
{
border-bottom: solid 1px #ffffff;
}
.catbg, .catbg2
{
font-weight: bold;
             horizontal-align:  center;
}
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
{
font-size: 95%;
color: #c19a12;
text-decoration: none;
}
.catbg a:link, .catbg a:visited , .catbg2 a:link, .catbg2 a:visited
{
color: #c19a12;
text-decoration: none;
}
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #c19a12;
}
/* This is used for tables that have a grid/border background color (such as the topic listing.) */
.bordercolor
{
            color: #c19a12;
background-color: #b8b8b8;
padding: 0px;
}

/* This is used on tables that should just have a border around them. */
.tborder
{
padding: 1px;
border: 1px solid #ffffff;
background-color: #ffffff;
}


/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */

.smalltext
{
font-size: x-small;
}
.middletext
{
font-size: 90%;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}


/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
width: 100%;
overflow: auto;
padding-bottom: 3px;
line-height: 1.3em;
}

/* Sometimes there will be an error when you post */
.error
{
color: red;
}


/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back, .maintab_active_last
{
color: white;
text-transform: lowercase;
vertical-align: top;
               
}
.maintab_back, .maintab_active_back
{
color: white;
text-decoration: none;
font-size:  9px;
vertical-align: top;
               
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}

.maintab_first
{
background: url(http://www.styleyourforum.com/data/309/css4.png) left bottom no-repeat;
width: 10px;
}
.maintab_back
{
background: url(http://www.styleyourforum.com/data/309/css4.png) left bottom repeat-x;
}
.maintab_last
{
background: url(http://www.styleyourforum.com/data/309/css4.png) left bottom no-repeat;
width: 8px;
}
.maintab_active_first
{
background: url(http://www.styleyourforum.com/data/309/css4.png) left bottom no-repeat;
width: 6px;
}
.maintab_active_back
{
background: url(http://www.styleyourforum.com/data/309/css8.png) left bottom repeat-x;
}
.maintab_active_last
{
background: url(http://www.styleyourforum.com/data/309/css4.png) left bottom no-repeat;
width: 8px;
}

/* how links behave in main tab. */
.maintab_back a:link , .maintab_back a:visited, .maintab_active_back a:link , .maintab_active_back a:visited
{
color: white;
text-decoration: none;
}

.maintab_back a:hover, .maintab_active_back a:hover
{
color: #ac810f;
text-decoration: none;
}

/* definitions for the mirror tab */
.mirrortab_first, .mirrortab_back, .mirrortab_last, .mirrortab_active_first, .mirrortab_active_back, .mirrortab_active_last
{
color: white;
text-transform: lowercase;
vertical-align: top;
}
.mirrortab_back, .mirrortab_active_back
{
color: white;
text-decoration: none;
font-size: 9px;
vertical-align: bottom;
padding: 6px 6px 2px 6px;
font-family: tahoma, sans-serif;
}

.mirrortab_first
{
background: url(http://www.styleyourforum.com/data/309/css10.png) no-repeat;
width: 10px;
}
.mirrortab_back
{
background: url(http://www.styleyourforum.com/data/309/css11.png) repeat-x;
}
.mirrortab_last
{
background: url(http://www.styleyourforum.com/data/309/css11.png) no-repeat;
width: 6px;
}
.mirrortab_active_first
{
background: url(http://www.styleyourforum.com/data/309/css11.png) no-repeat;
width: 6px;
}
.mirrortab_active_back
{
background: url(http://www.styleyourforum.com/data/309/css11.png) repeat-x;
}
.mirrortab_active_last
{
background: url(http://www.styleyourforum.com/data/309/css11.png) no-repeat;
width: 8px;
}

/* how links behave in mirror tab. */
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link , .mirrortab_active_back a:visited
{
color: white;
text-decoration: none;
}

.mirrortab_back a:hover, .mirrortab_active_back a:hover
{
color: #e0e0ff;
text-decoration: none;
}

/* The AJAX notifier */
#ajax_in_progress
{
background: #32CD32;
color: white;
text-align: center;
font-weight: bold;
font-size: 18pt;
padding: 3px;
width: 100%;
position: fixed;
top: 0;
left: 0;
}
* html body /* for IE */
{
text-align: center;
}
#mainframe
{
text-align: left;
margin: 0 auto 0 auto;
}


.wrapper {
width: 900px;
margin: 0 auto;
padding: 0;
}

#toparea {

}

#topbox {
background: url() no-repeat;
padding-right: 260px;
padding-top: 0px;
padding-bottom: 0px;
height: 120px;
}
#topframe
{
background: url(http://www.styleyourforum.com/data/309/css16.png) repeat-x top right;

}
#topframe2
{
background: url(http://www.styleyourforum.com/data/309/css17.png) no-repeat top right;

}
#topframe3
{
background: url(http://www.styleyourforum.com/data/309/css18.png) no-repeat top left;
padding-left: 165px;
height: 100px;
}
#bodyframe
{
background: url(http://www.styleyourforum.com/data/309/css19.png) #ffffff repeat-y top right;
padding-right: 100px;
}
#bodyframe2
{
padding-left: 100px;
background: url(http://www.styleyourforum.com/data/309/css20.png) repeat-y top left;
}
#bottomleft
{
background: url(http://www.styleyourforum.com/data/309/css21.png) no-repeat bottom left;
padding-left: 165px;
height: 100px;
}
#bottomframe
{
width: 1012px;
background: url(http://www.styleyourforum.com/data/309/css22.png) repeat-x bottom left;

}
#bottomright
{
background: url(http://www.styleyourforum.com/data/309/css23.png) no-repeat bottom right;
padding-right: 165px;
height: 100px;
}

MUST ADD TO HEADERS
Code: [Select]
<div id="mainframe"><div id="topframe"><div id="topframe2"><div id="topframe3">
</div></div></div>
<div id="bodyframe"><div id="bodyframe2"> <div id="menuinner">
</div>

MUST ADD TO FOOTERS
Code: [Select]
</div></div><div id="bottomframe" onload="News();"><div id="bottomleft"><div id="bottomright"></div></div></div></div><center><a href="http://www.revolutionx.smfforfree3.com" target="_blank"><img src="http://i225.photobucket.com/albums/dd64/ugrequests/Other%20Skins/31337/copyright.png" border="0" alt="31337 Created by deathwilldie at Revolution X"></a></center>
Post images:

On

Code: [Select]
http://www.styleyourforum.com/data/309/on.gif
Off

Code: [Select]
http://www.styleyourforum.com/data/309/off.gif
On2

Code: [Select]
http://www.styleyourforum.com/data/309/on2.gif
New_some

Code: [Select]
http://www.styleyourforum.com/data/309/new_some.gif
New_none

Code: [Select]
http://www.styleyourforum.com/data/309/new_none.gif
Well I think thats it. Post if I forgot something :D

11
SMF For Free Codes and Support / [Code] Floating Navigation at top of page.
« on: November 26, 2008, 12:15:51 pm »
Forum Url: http://upclosesnipers.smfforfree3.com
This code was not entirely made by me. The header code was made by Simply Sibyl and the footer code was make by Celebrus.

Preview is on my forums.

First off, add this to your headers. If you already have it, dont add it.

Code: [Select]
<script src="/jquery.js"></script>
Next, add this to you headers also.

Replace the X with your forum server number (smfforfree2, 3, or 4)
Replace XXX with your forum URL

Code: [Select]
<!-- Begin Links Up Top Floating Version   Code by simply sibyl  -->
<div class="tborder">

<!-- Header area where it says Links in the top header.
==========================================================
You can replace the word Links with whatever you want
========================================================== -->

<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="catbg" height="32">
<span>Navigation</span>
</td>
</tr>
<!-- End Header area where it says links.  -->
</td>
</table></td></div>
<!-- Begin Tab area.
==========================================================================
To add more tabs:
Add this for each tab you want to add:
<td valign="top" class="maintab_back"><a href="url goes here">link</a></td>
=========================================================================== -->   

<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_first"> </td>
<td class="maintab_active_first"> </td>
<td valign="top" class="maintab_active_back"><a href="">Home</a>
</td>
<td class="maintab_active_last"> </td>

<td valign="top" class="maintab_back"><a href="/?action=help">HELP</a></td>
<td valign="top" class="maintab_back"><a href="/?action=search">SEARCH</a></td>
<td valign="top" class="maintab_back"><a href="/?action=profile">PROFILE</a></td>
<td valign="top" class="maintab_back"><a href="/?action=pm">MY MESSAGES</a></td>
<td valign="top" class="maintab_back"><a href="/?action=staff">STAFF</a></td>
<td valign="top" class="maintab_back"><a href="/?action=calendar">CALENDAR</a></td>
<td valign="top" class="maintab_back"><a href="/?action=mlist">MEMBERS</a></td>

<td class="maintab_last"> </td>
</tr>
</table><br>

<!-- End Links Up Top -->

Now add this to your footers.

Code: [Select]
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Help)").hide();
</script>
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Search)").hide();
</script>
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Profile)").hide();
</script>
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(My Messages)").hide();
</script>
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Staff List)").hide();
</script>
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Calendar)").hide();
</script>
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Members)").hide();
</script>
<script>
if(!$('td.titlebg2 span b').not($("td.titlebg2 span b:contains(News)")).html())
{
$("table tbody tr td.maintab_back:contains(PROFILE)").hide();
}
</script>
<script>
if(!$('td.titlebg2 span b').not($("td.titlebg2 span b:contains(News)")).html())
{
$("table tbody tr td.maintab_back:contains(MY MESSAGES)").hide();
}
</script>

12
Stylesheet Codes / [Stylesheet] Purple Mousse
« on: November 20, 2008, 12:13:58 pm »
I dont know why but I love to recolor stylehseets XD

Here is a purple version of the Blue Mousse theme. I made this yesterday but I didnt want to post it because I didnt think it looked as good as my other recolorings.



Preview: Live Preview

CSS
Code: [Select]
td
{
font-size: 11px;
}

titlebg
{
font-size:  medium;
}
h1
{
             font-size: x-small;
}
/* Normal, standard links. */
a:link
{
color: #FFFFFF;
text-decoration: none;
            
            
}
a:visited
{
color: #FFFFFF;
text-decoration: none;
            
}
a:hover
{
color: #FFFFFF;
text-decoration: underline;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #FFFFFF;
text-decoration: none;
}
a.nav:hover
{
color: #404040;
text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
empty-cells: show;
}

/* By default (td, body..) use verdana in black. */
body, th
{
color: #727272;
font-size: small;
font-family: verdana, sans-serif;
}

/* The main body of the entire forum. */
body
{
             color:  #FFFFFF;
background:  #8370b2 url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Purple%20Mousse/simplebrownbg.png) repeat-x;
margin: 0px;
padding: 18px 45px 0px 45px;
            
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
background-color: ;
color: #727272;
font-family: verdana, sans-serif;
}
input, button
{
font-size: 90%;
}

textarea
{
font-size: 100%;
color: #727272;
font-family: verdana, sans-serif;
}

/* All input elements that are checkboxes or radio buttons. */
input.check
{
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 90%;
font-weight: normal;
color: #727272;
font-family: verdana, sans-serif;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #604336;
background-color: #666666;
}

/* No image should have a border when linked */
a img
{
border: 0;
}
/* A quote, perhaps from another post. */
.quote
{
color: #727272;
background-color: #D7DAEC;
border: 1px solid #5E5E5E;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}

/* A code block - maybe even PHP ;). */
.code
{
color: #727272;
background-color: #dddddd;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px solid #5E5E5E;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #727272;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
line-height: 1.2em;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{
color: #727272;
background-color: #F0F0F0;
}
.windowbg2
{
color: #727272;
background-color: #F0F0F0;
font-size: 11px;
}
.windowbg3
{
color: #727272;
background-color: #E0E0E0;
}


/* windowbg, windowbg2, windowbg3 link colors */
.windowbg a:link, .windowbg2 a:link, .windowbg3 a:link
{
color: #603b69;
text-decoration: none;
}
.windowbg a:visited, .windowbg2 a:visited, .windowbg3 a:visited
{
color: #603b69;
text-decoration: none;
}
.windowbg a:hover, .windowbg2 a:hover, .windowbg3 a:hover
{
             color: #603b69;
text-decoration: underline;
}

/* the today container in calendar */
.calendar_today
{
background-color: #FFFFFF;
}

/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
{
color: #B3ABAB;
font-style: normal;
background: url(http://i148.photobucket.com/albums/s20/smfstyles/simplebrown/titlebg.png) #F3F3F3 repeat-x;
border-bottom: solid 1px #DDDDDD;
border-top: solid 1px #DDDDDD;
padding-left: 10px;
padding-right: 10px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
color: #B3ABAB;
font-style: normal;
}

.titlebg a:hover
{
color: #404040;
}
/* same as titlebg, but used where bold text is not needed */
.titlebg2 a:link, .titlebg2 a:visited
{
color: #B3ABAB;
font-style: normal;
text-decoration: underline;
}

.titlebg2 a:hover
{
text-decoration: underline;
}


/* This is used for tables that have a grid/border background color (such as the topic listing.) */
.bordercolor
{
background-color: #FFFFFF;
padding: 0px;
}

/* This is used on tables that should just have a border around them. */
.tborder
{
padding: 3px;
border: 1px solid #DDDDDD;
background-color: #FFFFFF;
                color: #593D31;
}
.tborder a:link, .tborder a:visited, .tborder a:hover
{
                color:  #603b69;
}
/* This is used for categories, page indexes, and several other areas in the forum.
.catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers*/
.catbg , tr.catbg td , .catbg3 , tr.catbg3 td
{
background: url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Purple%20Mousse/catbg.png) #885D4A repeat-x;
color: #ffffff;
                padding-left: 10px;
padding-right: 10px;
                
}
.catbg2 , tr.catbg2 td
{
background: url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Purple%20Mousse/catbg.png) #885D4A repeat-x;
color: #ffffff;
                padding-left: 10px;
padding-right: 10px;
}
.catbg, .catbg2, .catbg3
{
border-bottom: solid 1px #DDDDDD;
}
.catbg, .catbg2
{
             font-weight: bold;
            
}
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
{
color:  #FFFFFF;
text-decoration: none;
}
.catbg a:link, .catbg a:visited , .catbg2 a:link, .catbg2 a:visited
{
color:  #FFFFFF;
text-decoration: none;
                font-size:  11px;
}
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #e0e0ff;
             text-decoration: underline;
}


/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext
{
font-size: x-small;
font-family: verdana, sans-serif;
}
.middletext
{
font-size: 90%;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
width: 100%;
overflow: auto;
padding-bottom: 3px;
line-height: 1.3em;
}

/* Sometimes there will be an error when you post */
.error
{
color: red;
}


/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back,

.maintab_active_last
{
color: #404040;
text-transform: uppercase;
vertical-align: top;
             font-size: 9px;
             font-weight: bold;               
}


.maintab_active_back
{
color: #404040;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}


.maintab_back
{
color: #603b69;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}

.maintab_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_first.png) left bottom no-repeat;
width: 10px;
}
.maintab_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_back.png) left bottom repeat-x;
}
.maintab_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_last.png) left bottom no-repeat;
width: 8px;
}
.maintab_active_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_first.png) left bottom

no-repeat;
width: 6px;
}
.maintab_active_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_back.png) left bottom

repeat-x;
}
.maintab_active_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_last.png) left bottom

no-repeat;
width: 8px;
}




/* how links behave in main tab. */
.maintab_back a:link, .maintab_back a:visited
{
color: #603b69;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}
.maintab_active_back a:link, .maintab_active_back a:visited
{
color: #404040;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}
.maintab_back a:hover, .maintab_active_back a:hover
{
color: #404040;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

/* definitions for the mirror tab */
.mirrortab_first, .mirrortab_back, .mirrortab_last

.mirrortab_active_last, .mirrortab_active_first
{
color: #603b69;
text-transform: uppercase;
vertical-align: top;
             font-size: 9px;
             font-weight: bold;
}
.mirrortab_back
{
color: #603b69;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: bottom;
padding: 6px 6x 2px 6px;
font-family: tahoma, sans-serif;
}

.mirrortab_active_back

{
color: #404040;
text-decoration: none;
font-size: 9px;
vertical-align: bottom;
padding: 6px 6px 2px 6px;
font-family: tahoma, sans-serif;
             font-weight: bold;
}


.mirrortab_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_first.png) no-repeat;
width: 10px;
}
.mirrortab_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_back.png) repeat-x;
}
.mirrortab_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_last.png) no-repeat;
width: 6px;
}
.mirrortab_active_first
               background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_first.png)

no-repeat;
width: 6px;
}
.mirrortab_active_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_back.png) repeat-x;
}
.mirrortab_active_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_last.png)

no-repeat;
width: 8px;
}

/* how links behave in mirror tab. */
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link,

.mirrortab_active_back a:visited
{
color: #603b69;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

.mirrortab_back a:hover, .mirrortab_active_back a:hover
{
color: #000000;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

/* The AJAX notifier */
#ajax_in_progress
{
background: #32CD32;
color: white;
text-align: center;
font-weight: bold;
font-size: 18pt;
padding: 3px;
width: 100%;
position: fixed;
top: 0;
left: 0;
}




13
Stylesheet Codes / [Stylesheet] Red Mousse
« on: November 20, 2008, 11:57:34 am »
Well I recolored my recoloring of the Blue Mousse theme and made it red XD



Preview: Live Preview

CSS
Code: [Select]
td
{
font-size: 11px;
}

titlebg
{
font-size:  medium;
}
h1
{
             font-size: x-small;
}
/* Normal, standard links. */
a:link
{
color: #FFFFFF;
text-decoration: none;
             
             
}
a:visited
{
color: #FFFFFF;
text-decoration: none;
             
}
a:hover
{
color: #FFFFFF;
text-decoration: underline;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #FFFFFF;
text-decoration: none;
}
a.nav:hover
{
color: #404040;
text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
empty-cells: show;
}

/* By default (td, body..) use verdana in black. */
body, th
{
color: #727272;
font-size: small;
font-family: verdana, sans-serif;
}

/* The main body of the entire forum. */
body
{
             color:  #FFFFFF;
background:  #d35b4f url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Red%20Mousse/simplebrownbg.png) repeat-x;
margin: 0px;
padding: 18px 45px 0px 45px;
             
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
background-color: ;
color: #727272;
font-family: verdana, sans-serif;
}
input, button
{
font-size: 90%;
}

textarea
{
font-size: 100%;
color: #727272;
font-family: verdana, sans-serif;
}

/* All input elements that are checkboxes or radio buttons. */
input.check
{
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 90%;
font-weight: normal;
color: #727272;
font-family: verdana, sans-serif;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #604336;
background-color: #666666;
}

/* No image should have a border when linked */
a img
{
border: 0;
}
/* A quote, perhaps from another post. */
.quote
{
color: #727272;
background-color: #D7DAEC;
border: 1px solid #5E5E5E;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}

/* A code block - maybe even PHP ;). */
.code
{
color: #727272;
background-color: #dddddd;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px solid #5E5E5E;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #727272;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
line-height: 1.2em;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{
color: #727272;
background-color: #F0F0F0;
}
.windowbg2
{
color: #727272;
background-color: #F0F0F0;
font-size: 11px;
}
.windowbg3
{
color: #727272;
background-color: #E0E0E0;
}


/* windowbg, windowbg2, windowbg3 link colors */
.windowbg a:link, .windowbg2 a:link, .windowbg3 a:link
{
color: #b53434;
text-decoration: none;
}
.windowbg a:visited, .windowbg2 a:visited, .windowbg3 a:visited
{
color: #b53434;
text-decoration: none;
}
.windowbg a:hover, .windowbg2 a:hover, .windowbg3 a:hover
{
             color: #b53434;
text-decoration: underline;
}

/* the today container in calendar */
.calendar_today
{
background-color: #FFFFFF;
}

/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
{
color: #B3ABAB;
font-style: normal;
background: url(http://i148.photobucket.com/albums/s20/smfstyles/simplebrown/titlebg.png) #F3F3F3 repeat-x;
border-bottom: solid 1px #DDDDDD;
border-top: solid 1px #DDDDDD;
padding-left: 10px;
padding-right: 10px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
color: #B3ABAB;
font-style: normal;
}

.titlebg a:hover
{
color: #404040;
}
/* same as titlebg, but used where bold text is not needed */
.titlebg2 a:link, .titlebg2 a:visited
{
color: #B3ABAB;
font-style: normal;
text-decoration: underline;
}

.titlebg2 a:hover
{
text-decoration: underline;
}


/* This is used for tables that have a grid/border background color (such as the topic listing.) */
.bordercolor
{
background-color: #FFFFFF;
padding: 0px;
}

/* This is used on tables that should just have a border around them. */
.tborder
{
padding: 3px;
border: 1px solid #DDDDDD;
background-color: #FFFFFF;
                color: #593D31;
}
.tborder a:link, .tborder a:visited, .tborder a:hover
{
                color:  #b53434;
}
/* This is used for categories, page indexes, and several other areas in the forum.
.catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers*/
.catbg , tr.catbg td , .catbg3 , tr.catbg3 td
{
background: url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Red%20Mousse/catbg.png) #885D4A repeat-x;
color: #ffffff;
                padding-left: 10px;
padding-right: 10px;
                 
}
.catbg2 , tr.catbg2 td
{
background: url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Red%20Mousse/catbg.png) #885D4A repeat-x;
color: #ffffff;
                padding-left: 10px;
padding-right: 10px;
}
.catbg, .catbg2, .catbg3
{
border-bottom: solid 1px #DDDDDD;
}
.catbg, .catbg2
{
             font-weight: bold;
             
}
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
{
color:  #FFFFFF;
text-decoration: none;
}
.catbg a:link, .catbg a:visited , .catbg2 a:link, .catbg2 a:visited
{
color:  #FFFFFF;
text-decoration: none;
                font-size:  11px;
}
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #e0e0ff;
             text-decoration: underline;
}


/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext
{
font-size: x-small;
font-family: verdana, sans-serif;
}
.middletext
{
font-size: 90%;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
width: 100%;
overflow: auto;
padding-bottom: 3px;
line-height: 1.3em;
}

/* Sometimes there will be an error when you post */
.error
{
color: red;
}


/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back,

.maintab_active_last
{
color: #404040;
text-transform: uppercase;
vertical-align: top;
             font-size: 9px;
             font-weight: bold;               
}


.maintab_active_back
{
color: #404040;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}


.maintab_back
{
color: #b53434;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}

.maintab_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_first.png) left bottom no-repeat;
width: 10px;
}
.maintab_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_back.png) left bottom repeat-x;
}
.maintab_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_last.png) left bottom no-repeat;
width: 8px;
}
.maintab_active_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_first.png) left bottom

no-repeat;
width: 6px;
}
.maintab_active_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_back.png) left bottom

repeat-x;
}
.maintab_active_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_last.png) left bottom

no-repeat;
width: 8px;
}




/* how links behave in main tab. */
.maintab_back a:link, .maintab_back a:visited
{
color: #b53434;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}
.maintab_active_back a:link, .maintab_active_back a:visited
{
color: #404040;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}
.maintab_back a:hover, .maintab_active_back a:hover
{
color: #404040;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

/* definitions for the mirror tab */
.mirrortab_first, .mirrortab_back, .mirrortab_last

.mirrortab_active_last, .mirrortab_active_first
{
color: #b53434;
text-transform: uppercase;
vertical-align: top;
             font-size: 9px;
             font-weight: bold;
}
.mirrortab_back
{
color: #b53434;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: bottom;
padding: 6px 6x 2px 6px;
font-family: tahoma, sans-serif;
}

.mirrortab_active_back

{
color: #404040;
text-decoration: none;
font-size: 9px;
vertical-align: bottom;
padding: 6px 6px 2px 6px;
font-family: tahoma, sans-serif;
             font-weight: bold;
}


.mirrortab_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_first.png) no-repeat;
width: 10px;
}
.mirrortab_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_back.png) repeat-x;
}
.mirrortab_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_last.png) no-repeat;
width: 6px;
}
.mirrortab_active_first
               background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_first.png)

no-repeat;
width: 6px;
}
.mirrortab_active_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_back.png) repeat-x;
}
.mirrortab_active_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_last.png)

no-repeat;
width: 8px;
}

/* how links behave in mirror tab. */
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link,

.mirrortab_active_back a:visited
{
color: #b53434;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

.mirrortab_back a:hover, .mirrortab_active_back a:hover
{
color: #000000;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

/* The AJAX notifier */
#ajax_in_progress
{
background: #32CD32;
color: white;
text-align: center;
font-weight: bold;
font-size: 18pt;
padding: 3px;
width: 100%;
position: fixed;
top: 0;
left: 0;
}



14
Stylesheet Codes / [Stylesheet] Green Mousse
« on: November 19, 2008, 11:23:04 pm »
This is a recolor of Simply Sibyl's stylesheet "Blue Mousse".



Preview: Live Preview

CSS
Code: [Select]
td
{
font-size: 11px;
}

titlebg
{
font-size:  medium;
}
h1
{
             font-size: x-small;
}
/* Normal, standard links. */
a:link
{
color: #FFFFFF;
text-decoration: none;
             
             
}
a:visited
{
color: #FFFFFF;
text-decoration: none;
             
}
a:hover
{
color: #FFFFFF;
text-decoration: underline;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #FFFFFF;
text-decoration: none;
}
a.nav:hover
{
color: #404040;
text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
empty-cells: show;
}

/* By default (td, body..) use verdana in black. */
body, th
{
color: #727272;
font-size: small;
font-family: verdana, sans-serif;
}

/* The main body of the entire forum. */
body
{
             color:  #FFFFFF;
background:  #9eb270 url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Green%20Mousse/simplebrownbg.png) repeat-x;
margin: 0px;
padding: 18px 45px 0px 45px;
             
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
background-color: ;
color: #727272;
font-family: verdana, sans-serif;
}
input, button
{
font-size: 90%;
}

textarea
{
font-size: 100%;
color: #727272;
font-family: verdana, sans-serif;
}

/* All input elements that are checkboxes or radio buttons. */
input.check
{
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 90%;
font-weight: normal;
color: #727272;
font-family: verdana, sans-serif;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #604336;
background-color: #666666;
}

/* No image should have a border when linked */
a img
{
border: 0;
}
/* A quote, perhaps from another post. */
.quote
{
color: #727272;
background-color: #D7DAEC;
border: 1px solid #5E5E5E;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}

/* A code block - maybe even PHP ;). */
.code
{
color: #727272;
background-color: #dddddd;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px solid #5E5E5E;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #727272;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
line-height: 1.2em;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{
color: #727272;
background-color: #F0F0F0;
}
.windowbg2
{
color: #727272;
background-color: #F0F0F0;
font-size: 11px;
}
.windowbg3
{
color: #727272;
background-color: #E0E0E0;
}


/* windowbg, windowbg2, windowbg3 link colors */
.windowbg a:link, .windowbg2 a:link, .windowbg3 a:link
{
color: #366036;
text-decoration: none;
}
.windowbg a:visited, .windowbg2 a:visited, .windowbg3 a:visited
{
color: #366036;
text-decoration: none;
}
.windowbg a:hover, .windowbg2 a:hover, .windowbg3 a:hover
{
             color: #366036;
text-decoration: underline;
}

/* the today container in calendar */
.calendar_today
{
background-color: #FFFFFF;
}

/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
{
color: #B3ABAB;
font-style: normal;
background: url(http://i148.photobucket.com/albums/s20/smfstyles/simplebrown/titlebg.png) #F3F3F3 repeat-x;
border-bottom: solid 1px #DDDDDD;
border-top: solid 1px #DDDDDD;
padding-left: 10px;
padding-right: 10px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
color: #B3ABAB;
font-style: normal;
}

.titlebg a:hover
{
color: #404040;
}
/* same as titlebg, but used where bold text is not needed */
.titlebg2 a:link, .titlebg2 a:visited
{
color: #B3ABAB;
font-style: normal;
text-decoration: underline;
}

.titlebg2 a:hover
{
text-decoration: underline;
}


/* This is used for tables that have a grid/border background color (such as the topic listing.) */
.bordercolor
{
background-color: #FFFFFF;
padding: 0px;
}

/* This is used on tables that should just have a border around them. */
.tborder
{
padding: 3px;
border: 1px solid #DDDDDD;
background-color: #FFFFFF;
                color: #593D31;
}
.tborder a:link, .tborder a:visited, .tborder a:hover
{
                color:  #315941;
}
/* This is used for categories, page indexes, and several other areas in the forum.
.catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers*/
.catbg , tr.catbg td , .catbg3 , tr.catbg3 td
{
background: url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Green%20Mousse/catbg.png) #885D4A repeat-x;
color: #ffffff;
                padding-left: 10px;
padding-right: 10px;
                 
}
.catbg2 , tr.catbg2 td
{
background: url(http://i491.photobucket.com/albums/rr280/Colonel-Pepsi/Green%20Mousse/catbg.png) #885D4A repeat-x;
color: #ffffff;
                padding-left: 10px;
padding-right: 10px;
}
.catbg, .catbg2, .catbg3
{
border-bottom: solid 1px #DDDDDD;
}
.catbg, .catbg2
{
             font-weight: bold;
             
}
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
{
color:  #FFFFFF;
text-decoration: none;
}
.catbg a:link, .catbg a:visited , .catbg2 a:link, .catbg2 a:visited
{
color:  #FFFFFF;
text-decoration: none;
                font-size:  11px;
}
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #e0e0ff;
             text-decoration: underline;
}


/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext
{
font-size: x-small;
font-family: verdana, sans-serif;
}
.middletext
{
font-size: 90%;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
width: 100%;
overflow: auto;
padding-bottom: 3px;
line-height: 1.3em;
}

/* Sometimes there will be an error when you post */
.error
{
color: red;
}


/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back,

.maintab_active_last
{
color: #404040;
text-transform: uppercase;
vertical-align: top;
             font-size: 9px;
             font-weight: bold;               
}


.maintab_active_back
{
color: #404040;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}


.maintab_back
{
color: #3b693f;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}

.maintab_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_first.png) left bottom no-repeat;
width: 10px;
}
.maintab_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_back.png) left bottom repeat-x;
}
.maintab_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_last.png) left bottom no-repeat;
width: 8px;
}
.maintab_active_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_first.png) left bottom

no-repeat;
width: 6px;
}
.maintab_active_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_back.png) left bottom

repeat-x;
}
.maintab_active_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/maintab_active_last.png) left bottom

no-repeat;
width: 8px;
}




/* how links behave in main tab. */
.maintab_back a:link, .maintab_back a:visited
{
color: #3b693f;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}
.maintab_active_back a:link, .maintab_active_back a:visited
{
color: #404040;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}
.maintab_back a:hover, .maintab_active_back a:hover
{
color: #404040;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

/* definitions for the mirror tab */
.mirrortab_first, .mirrortab_back, .mirrortab_last

.mirrortab_active_last, .mirrortab_active_first
{
color: #3b693f;
text-transform: uppercase;
vertical-align: top;
             font-size: 9px;
             font-weight: bold;
}
.mirrortab_back
{
color: #3b693f;
text-decoration: none;
font-size: 9px;
             font-weight: bold;
vertical-align: bottom;
padding: 6px 6x 2px 6px;
font-family: tahoma, sans-serif;
}

.mirrortab_active_back

{
color: #404040;
text-decoration: none;
font-size: 9px;
vertical-align: bottom;
padding: 6px 6px 2px 6px;
font-family: tahoma, sans-serif;
             font-weight: bold;
}


.mirrortab_first
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_first.png) no-repeat;
width: 10px;
}
.mirrortab_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_back.png) repeat-x;
}
.mirrortab_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_last.png) no-repeat;
width: 6px;
}
.mirrortab_active_first
               background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_first.png)

no-repeat;
width: 6px;
}
.mirrortab_active_back
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_back.png) repeat-x;
}
.mirrortab_active_last
{
background: url(http://i148.photobucket.com/albums/s20/smfstyles/bluegrey/mirrortab_active_last.png)

no-repeat;
width: 8px;
}

/* how links behave in mirror tab. */
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link,

.mirrortab_active_back a:visited
{
color: #3b693f;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

.mirrortab_back a:hover, .mirrortab_active_back a:hover
{
color: #000000;
text-decoration: none;
             font-size: 9px;
             font-weight: bold;
}

/* The AJAX notifier */
#ajax_in_progress
{
background: #32CD32;
color: white;
text-align: center;
font-weight: bold;
font-size: 18pt;
padding: 3px;
width: 100%;
position: fixed;
top: 0;
left: 0;
}




15
Code Requests / Page refresh fr signature
« on: November 19, 2008, 11:03:04 am »
I was wondering if its possible to make a code for your sig that refreshes the page of your choice? So like if I put the code in my sig and told it to refresh the home page of smf support, it would refresh it within the amount of time i set. Sorry if it doesnt make sense...

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