Recent Posts

Pages: 1 2 3 [4] 5 6
31
Guides and Tutorials / [GUIDE] How to Add Board Moderators
« Last post by Nick on August 04, 2010, 12:17:12 pm »
Board moderators are Players that have moderation powers in just one or two boards.

Admin-> Boards-> Select the Board

Scroll down to the second section and the first option named "Moderators" add the name of the player(s) you want to be moderate that particular board.
32
Guides and Tutorials / NOTE:
« Last post by Nick on August 04, 2010, 11:46:18 am »
When a guide maker wants a guide to be deleted we will be completely compliant. We will however make our own guide from scratch. You will be given no credit because you didn't want your version on here in the first place.


Banned Guides
       

Simply Sibyl







Any "banned" guides are guides that the owner of has asked not to be on here.
33
General Discussion / How'd You Find CF Coding?
« Last post by Nick on August 03, 2010, 11:10:08 pm »
So how'd you find us?


I found CF Coding at CAF Support in a post by Fate.
34
Help / Re: "Themes" Board
« Last post by Fate on August 03, 2010, 06:46:26 pm »
No problem; URL sent. ;)
35
Help / Re: "Themes" Board
« Last post by Nick on August 03, 2010, 06:36:53 pm »
Thanks! Also, send me the URL for your logo.
36
Help / Re: "Themes" Board
« Last post by Fate on August 03, 2010, 06:24:15 pm »
Fixed. ;)
37
Help / "Themes" Board
« Last post by Nick on August 03, 2010, 05:43:45 pm »
Yeah... Your "themes" board is tweaking out on me... Not sure if it's just my iTouch or my amazing amount of luck or if it's a problem for everyone..
38
Create A Forum Codes / [CODE] Money Code (Simple)-- Agent Moose
« Last post by Nick on August 03, 2010, 01:27:13 pm »
100% of the credit to making this code goes to Agent Moose.

Put this in your footers

Code: [Select]
<!---http://cfcoding.createaforum.com--->
<script type="text/javascript">
var Name = "NAME";
var Sign = "SIGN";
var Amount = AMOUNT PER POST;

var Aug_02_2010 = document.getElementsByTagName("li");
//Created by Agent Moose
for(x=0;x<Aug_02_2010.length;x++){
if(Aug_02_2010[x].className === "postcount" && Aug_02_2010[x].innerHTML.match(/posts: (.*)/i)){
var li = document.createElement("li");
li.className = "money";
li.innerHTML = Name + ": " + Sign + (RegExp.$1 * Amount);
Aug_02_2010[x].parentNode.insertBefore(li, Aug_02_2010[x].nextSibling);
};
};
</script>
<!---http://cfcoding.createaforum.com--->

NAME = The Name of the currency (EX: Money)
SIGN = The Sign of the currency (EX: $)
AMOUNT PER POST = How much the user will get for each post they make (EX: 2. Whatever number you set, will be multiplied by their post number)


NOTE: This code is subject to be edited in the future by it's original creator!!

100% of the credit to making this code goes to Agent Moose.
39
Create A Forum Codes / [CODE/CSS] Remove "Post Group" for Admins and Mods
« Last post by Nick on August 03, 2010, 12:18:39 pm »
100% of the credit to this code goes to Agent Moose

Add this into your CSS. Doesn't matter were, but I prefer the very top or boron so I can locate it easily.

Code: [Select]
<!---http://cfcoding.createaforum.com--->
/* Remove "Post Group" for Admins/Mods //Created by Agent Moose */
li.membergroup + li.postgroup { display: none; }
<!---http://cfcoding.createaforum.com--->

This code removes the "Post Group" name (EX: Newbie, Member) in topics/PM's for Admins and Moderators.

100% of the credit to this code goes to Agent Moose.
40
Create A Forum Codes / [CODE/CSS] Add Image Before Navigation-- Agent Moose
« Last post by Nick on August 03, 2010, 12:07:04 pm »
100% of the credits to making this code goes to Agent Moose

Add this code to the CSS. Anywhere in the CSS is fine, but I prefer to put it at the very beginning or the very top.


Code: [Select]
<!---http://cfcoding.createaforum.com--->
/* Add Image before Navigation */
div.navigate_section ul li:first-child:before
{
vertical-align: middle;
content: url("IMAGE URL HERE");
}
<!---http://cfcoding.createaforum.com--->

Do what it says to do and it will do what the title say to do.

100% of the credit to this code goes to Agent Moose.
Pages: 1 2 3 [4] 5 6