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 - rebelion

Pages: [1] 2 3
1
Graphics And Design / something i made :P
« on: October 09, 2011, 09:53:29 pm »
 I made this for a project that my sister had (she isn't that good at graphics so i just do her projects and its fun for me :P)

2
 Preview:


 where it has left blocks all the way to the right it has a circle with a "+" inside click it and scroll all the way to the bottom and choose custom bbc or custom HTML for the block.
 To create this navigation bar go to admin>>simpleportal>>blocks


 Put this code in and name it navigation
BBC
Code: [Select]
[img]http://i675.photobucket.com/albums/vv118/ownerebel/th_home.png[/img][url=http://yourforumhere/index.php] [u][b]Home[/b][/u][/url]
[img]http://i675.photobucket.com/albums/vv118/ownerebel/th_forums.png[/img][url=http://yourforumhere/index.php?action=forum] [u][b]Forum[/b][/u][/url]
[img]http://i675.photobucket.com/albums/vv118/ownerebel/recovs.png[/img][url=http://yourforumhere/index.php?action=profile] [u][b]Profile[/b][/u][/url]
[img]http://i675.photobucket.com/albums/vv118/ownerebel/th_irc.png[/img][url=http://URL HERE] [u][b]Chat[/b][/u][/url]
HTML
Code: [Select]
<p><img src="http://i675.photobucket.com/albums/vv118/ownerebel/th_home.png" alt="th_home.png" /><a href="http://yourforumhere/index.php"> <span style="text-decoration: underline;"><strong>Home</strong></span></a><br />
<img src="http://i675.photobucket.com/albums/vv118/ownerebel/th_forums.png" alt="th_forums.png" /><a href="http://yourforumhere/index.php?action=forum"> <span style="text-decoration: underline;"><strong>Forum</strong></span></a><br />
<img src="http://i675.photobucket.com/albums/vv118/ownerebel/recovs.png" alt="recovs.png" /><a href="http://yourforumhere/index.php?action=profile"> <span style="text-decoration: underline;"><strong>Profile</strong></span></a><br />
<img src="http://i675.photobucket.com/albums/vv118/ownerebel/th_irc.png" alt="th_irc.png" /><a href="http://URL HERE"> <span style="text-decoration: underline;"><strong>Chat</strong></span></a></p>
for more pics:
Click pics for links

Vote


Download


Chat


Team


Forum


Home




 Okay to create a new page to add to the navigation go to
Admin>>simpleportal>>pages>>addpage

 Create a new page and add what ever you want to it you an than create a new link to your navigation and get a small picture to put right next to it.

Credits to nick for creating the code and me for the pictures and updating it

3
Support / Smf2.0 rc3 smf is unable to connect to database
« on: November 09, 2010, 04:03:47 pm »
musicforum.smfnew.com
smf2.0 rc3

 I just created a new forum like 30 seconds ago and I got a database error I haven't even logged on to the forum yet.

4
Graphics And Design / Graphics-helping on banners that I've made
« on: November 08, 2010, 09:24:45 pm »
 Well I've been following tutorials for lots of graphics here are the ones that I followed the tutorials the ones that I've improved on and didn't follow tutorials on it I might show it later on.

 Also if you want to know how to do any one of these graphics pm me and I'll create a tutorial here(I've got lots of free time).

http://s675.photobucket.com/albums/vv118/ownerebel/Best%20gimp%20work/?action=view&current=babd88ad.pbw I can't post the slide show here it won't let me :\.

5
Graphics And Design / New graphic
« on: November 04, 2010, 09:50:16 pm »
 So I made a new graphic following a tutorial which is what I do to learn more and more about graphics until I can do it by my self here it is.


6
Binned / [SMF 2.0 RC3] ultimate profile
« on: November 02, 2010, 10:51:54 am »
Link to mod: http://custom.simplemachines.org/mods/index.php?mod=1675
link to forum: rebeliontestforum.smfnew.com
 
 Just look how awesome it is: http://dev.turanjanin.net/forum/index.php?action=profile;u=1
 I requested this mod 4 months ago and nick said he's keeping a close eye on it so I'm re posting just in case you forgot.

7
Binned / [SMF 2.0] advanced karma
« on: November 01, 2010, 09:22:34 pm »
link to mod: http://custom.simplemachines.org/mods/index.php?mod=1129
link to site: rebeliontestforum.smfnew.com

 This mod basically is like the karma already installed but it's more advanced and it's better in my opinion it is compatible with SMF 2.0 RC3. The already installed karma is less advanced and the karma labels are switched so when you like some ones post it goes as karma "-" which is easy to switch just go to the admin panel.

8
Tips & Resources / [BBC] Making a table
« on: July 26, 2010, 11:18:47 pm »
Making a table
First off, click the Insert Table button this adds the following code.
Code: [Select]
[table][/table]This generates the start and end of a Table. Into this you need to add Table Rows and then Table Data.
Place your cursor between the Table tags and click the Table Row button
You should now have:
Code: [Select]
[table][tr][/tr][/table]Then between the Table Row tags tr Add the Table Data tags by clicking the Table Column button
Giving you:
Code: [Select]
[table][tr][td][/td][/tr][/table]Move the /table tag down a few lines then add the Data tags twice more within the Row then copy the Row down a few times to end up with a table like this:
Code: [Select]
[table]
[tr][td][/td][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][td][/td][/tr]
[/table]
All you need do now is add the text between the Data tags and you should end up with a nicely formatted table:
Code: [Select]
[table]
[tr][td]R1 C1[/td][td]R1 C2[/td][td]R1 C3[/td][/tr]
[tr][td]R2 C1[/td][td]R2 C2[/td][td]R2 C3[/td][/tr]
[tr][td]R3 C1[/td][td]R3 C2[/td][td]R3 C3[/td][/tr]
[/table]
Which displays like this.
R1 C1R1 C2R1 C3
R2 C1R2 C2R2 C3
R3 C1R3 C2R3 C3
To add a bit of padding, add some blank Data tags (empty columns), this works better than just padding with spaces.
Code: [Select]
[table]
[tr][td]R1 C1[/td][td][/td][td]R1 C2[/td][td][/td][td]R1 C3[/td][/tr]
[tr][td]R2 C1[/td][td][/td][td]R2 C2[/td][td][/td][td]R2 C3[/td][/tr]
[tr][td]R3 C1[/td][td][/td][td]R3 C2[/td][td][/td][td]R3 C3[/td][/tr]
[/table]
Which results in:
R1 C1R1 C2R1 C3
R2 C1R2 C2R2 C3
R3 C1R3 C2R3 C3

 Full credits to "Chas Large" on SMF community http://www.simplemachines.org/community/index.php?topic=366480.msg2505842#msg2505842

9
Tips & Resources / [SMFnew] BBCODE Guide
« on: July 26, 2010, 08:44:02 pm »
 SMF bbcodes, some are for SMF 1 and some are for SMF 2 I'm going to modify it more.

BBC nameCodeResult



abbr[abbr=test]When Hovered over, this should say "Test"[/abbr]When Hovered over, this should say "Test"



acronym[acronym=test]Same thing is the other one[/acronym]Same thing is the other one



br[br]Test

Test



code[code][/code]Adds a box which is easy to select all(I didn't add a result because it took up it's own whole line)



anchor[iurl=#clickme]CLICKME[/iurl]
than add
[anchor=clickme]You are now here[/anchor] some where
CLICKME

.
.
.
.
.
.


You are now here



center,left, right, and preformatted[center][/center]
centers the text

Aligns the text to the left

aligns the text to the right

preformats the text



color[color=anycolor][/color](silver)changes the text color



email[email]emailhere[/email]ownrzrebelion@live.com



ftp[ftp=ftp://somesite]ftp://somesite[/ftp]
or [ftp=ftp://somesite]somesite[/ftp]
ftp://somesite
or somesite



size[size=20pt][/size]font size



flash[flash=200,200]http://somesite/somefile.swf[/flash]http://somesite/somefile.swf Inserts a link to an animated flash file in .swf format.



blue,black,
green,red etc
[blue][/blue]changes the text to the selected color



glow[glow=color,2,50][/glow]glow



hr[hr]Test
Test



html[html][/html]<br>([html][/html]=Only for admins)



img[img]http://somesite/image.jpg[/img]



i[i][/i]text



iurl[iurl]url here[/iurl]http://www.smfnew.com Makes a link that opens in the same window.



li and list[list][li]item number 1[/li] [li] item number 2[/li][/list]
  • Item number 1
  • Item number 2



ltr and rtl[ltr]test[/ltr] [rtl] test[/rtl]
test
test



move[move]test[/move]test



nobbc[nobbc][/nobbc][blue]test[/blue]



php[php][/php]smf 1 only go to
http://www.phpcodetest.smfnew.com/index.php?topic=2.0 to see it



quote[quote][/quote]
Quote
test
or
Quote from: name link=topic=topic code date= numbers here
test



s[s][/s]test



sub and sup[sub][/sub] and [sup][/sup]test and test



shadow[shadow=blue,left][/shadow]test



time[time]1280156734(if you need help with the numbers here ask me)[/time]July 26, 2010, 10:05:34 am



tt[tt]text[/tt]test Formats enclosed text in teletype format.



url[url]url here[/url]http://www.smfnew.com



underline[u][/u]test



table, tr, td
Quote
[table][tr][td][b][u]Title1[/u][/b][/td][td][b][u]Title 2[/u][/b][/td][/tr][tr][td]test[/td][td]test[/td][/tr][tr][td]test[/td][td]test[/td][/tr][/table][/td][/tr][/table]
Title1Title 2
testtest
testtest




Credits
NameHelped with
Google Looking up some BBCs
SMF Having some BBCs in their forum
Rebelion (me) Writing this whole thread and knowing most of the BBCs
Chas Large from the SMF communityWriting a post of how to make a table




WHEN A NEW BBC MOD GETS INSTALLED I'M GOING TO UPDATE THIS

10
Graphics And Design / Gimp Overlay option
« on: July 24, 2010, 06:16:32 pm »


 I'm going to use Gimp overlay option to edit this picture to a colored picture:) post interesting B&W so I can make it into a colored pic :). I'm just testing the over lay option.

11
General Discussion / SMFnew traffic
« on: July 24, 2010, 05:57:22 pm »


 SMFnew traffic chart :D go to http://www.compete.com/referrals/ to get your own :)

12
General Discussion / Which SMF version or do you like better?
« on: July 24, 2010, 04:25:21 pm »
 I want to make a poll on which you people like better :)

 I'm voting for 1.X because it's the same thing and most mods like the crown mod is only compatible with it. Post why you like the version you chose here :D.

13
General Discussion / What happened with the blogs :(?
« on: July 22, 2010, 02:36:59 pm »
 Why aren't there any more blogs? I enjoyed reading them and having a conversation.

14
Binned / [SMF 2.0] Couple of bbcs
« on: July 18, 2010, 10:13:49 pm »
http://custom.simplemachines.org/mods/index.php?mod=2078
Adds 4 bbcodes

| ErrorBox => [error]Text[/error]
| WarningBox => [warning]Text[/warning]
| OkayBox => [okay]Text[/okay]   
| InfoBox => [info]Text[/info]

 Look on the link for a picture

http://custom.simplemachines.org/mods/index.php?mod=2305

 BBC floating [float=left][/float] [float=right][/float]
adds a picture or think to the left and you can add text next to it. It'll make my life easier :P and I've always wanted this.

 Link to forum: http://www.combatscapepk.smfnew.com/

15
Tips & Resources / [HTML]Games for your website :)
« on: July 18, 2010, 01:56:25 pm »
 Okay,
this is a very short tutorial and it'll show you how to add a game to your forum (no scores just a fun game to play). It's in HTML so all you need to do is create a new HTML page, HTML block, or put it in a board descriptions :).

DEMO FORUM: http://www.forumgamesdemo.smfnew.com/index.php


 
Codes for games

Dirt Bike 2

Code: [Select]
<iframe width="500" height="400" src="http://www.freeonlinegames.com/embed.php?g_id=3207" frameborder="0" scrolling="no"></iframe>
Urban Sniper

Code: [Select]
<iframe width="600" height="480" src="http://www.freeonlinegames.com/embed.php?g_id=13422" frameborder="0" scrolling="no"></iframe>
Mini Pool

Code: [Select]
<iframe width="570" height="420" src="http://www.freeonlinegames.com/embed.php?g_id=5" frameborder="0" scrolling="no"></iframe>

Mini Pool

Code: [Select]
<iframe width="570" height="420" src="http://www.freeonlinegames.com/embed.php?g_id=5" frameborder="0" scrolling="no"></iframe>
GET MORE GAME CODES FROM:
http://www.addictinggames.com/gotd/games_for_your_site.html
http://www.freegamesforyourwebsite.com/

 Play around with the your block and make it better so you can have your own arcade forum :)

16
General Discussion / Web designer
« on: July 14, 2010, 12:03:07 am »
 I've quit Rune Scape Private Servers and Rune Scape and every game out there and I've decided to become a Web Designer and make themes for smfnew 2.0 rc3 :D. So... any one *cough* admins or any one how to get started? I don't know what to do lol do I download a theme modify it and upload it  ????

17
Graphics And Design / Cool banner I've made :D
« on: July 12, 2010, 12:42:29 am »
This is original pic(it's from some theme from some skin that my friend uses)


This is new one! :D

18
Support / pro hosting
« on: July 07, 2010, 10:52:24 pm »
 Some one donated 50 dollars on my server and I'm wondering about the transfer that cost 30 something dollars can't I just create a new forum from pro hosting without paying the 30 just the 9 a month?

19
Graphics And Design / Cool banner I've made
« on: July 05, 2010, 11:11:14 pm »

 Constructive criticism please :)

 Improved:

20
Binned / [SMF 2.0 RC 3] Zone99 Theme
« on: July 03, 2010, 04:42:57 pm »
Quote
Hey I would like for you guys to install this theme on my website.

http://www.nmg.smffy.com/index.php

Thanks in advance,
zephk
Since this topic got binned I'd like to request it since that theme is pretty good.

 My forum: http://www.runeheat.tk
 Forum Version: SMF 2.X
 Download: http://www.support.smfnew.com/index.php?action=dlattach;topic=4506.0;attach=415
__________________________________________________________
  Not sure if this is SMF 2.0 so if it's SMF 2.1 the site is
  http://www.hellsaddiction317.smfnew.com

Pages: [1] 2 3
SimplePortal 2.3.7 © 2008-2024, SimplePortal