Bluepearl Design
Go Back   Bluepearl Design > Bluepearl Design > Need Help?

Private forum :: how to create?

Ask us questions relavent to Web Design and Computers.
Also support for Bluepearl Design and webclans.net hosting.

    

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 07-23-2005, 01:24 AM   #31 (permalink)
 
SpawnDemon's Avatar
 
Title: Bluepearl Veteran
Join Date: Jul 2005
Location: Philadelphia, Pennsylvania - Home Base
Posts: 727
Rep Power: 4 SpawnDemon is on a distinguished road
Send a message via MSN to SpawnDemon Send a message via Skype™ to SpawnDemon
Re: Private forum :: how to create?

No offence to anyone or anything around here. Good Job Autumn it's ocming great. I am sure it will look awesome. I like these kind of forums and templates.
http://www.clantemplates.com/index.p...e&id=premium_j
They are REALLY hard to make but they come out to an awesome website or forum. It flash and php at the top with oving images and basic HTML at the bottom for content.

Now, Is SMF like phpbb or php or w/e it is that you guys use. Because I sure as hell would want to make a forum on my own and make it tottaly configured to my liking.
__________________
What did he say? A new e1studios site? Where can I get some. Click Here!
SpawnDemon is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 01:37 AM   #32 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 19
Posts: 4,436
Images: 1
Rep Power: 9 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: Private forum :: how to create?

phpbb = forum software
smf = better forum software
Vbulletin = same as smf, but not free

the best forum i know to make it 100% adapted to your needs would be SMF, it's really easy to use, at first there are alot of settings to do, but when those are done everything is as simple as it gets
updates are way to easy, mods /skins are uploaded / installed by smf itself whenever you want to. (skins you have to show the path to it first)
Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 02:21 AM   #33 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 19
Posts: 4,436
Images: 1
Rep Power: 9 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: Private forum :: how to create?

just stumbled onto this:
http://patrick.hardcorecoders.net/tutorials/#sec1

and add this to it:
http://autumnwhisperstome.com/somber...pic=15.new#new

That way you should be able to make a whole new (simple) theme
Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 02:35 AM   #34 (permalink)
 
SpawnDemon's Avatar
 
Title: Bluepearl Veteran
Join Date: Jul 2005
Location: Philadelphia, Pennsylvania - Home Base
Posts: 727
Rep Power: 4 SpawnDemon is on a distinguished road
Send a message via MSN to SpawnDemon Send a message via Skype™ to SpawnDemon
Re: Private forum :: how to create?

Thanks but second link:

The topic or board you are looking for appears to be either missing or off limits to you.
__________________
What did he say? A new e1studios site? Where can I get some. Click Here!
SpawnDemon is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 02:49 AM   #35 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 19
Posts: 4,436
Images: 1
Rep Power: 9 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: Private forum :: how to create?

not to me, maybne to you?
----
http://patrick.hardcorecoders.net/tutorials/#sec1
Here you can find how to make an new theme starting with the standard one.
(you will need the SMF forum running on a server, local or online)
www.simplemachines.org
-----

if you click on the first link, you see a great tutorial on how to edit the CSS file to make a new there.
now, i have been thinking about that one, and i've come to the conclusion that if you want to use images instead of flat colors, you can just replace some of the code in the CSS like this:
original (sort of original ):

Code:
 /* Alternating backgrounds... */ 
.windowbg
{
color: #000000;
background-color: #E1E1E1;
}
.windowbg2
{
color: #000000;
background-color: #F0F0F0;
}
That part makes the background between 2 posts alternate.
This is my version of it:
First make an image you want to have. (like you can see in the left top corner of this forum)
Code:
   
/* Alternating backgrounds... */
.windowbg
{
color: #000000;
background-image: url(images/postback1.gif);
background-color: #F0F0F0;
background-repeat: no; /*i'm not 100% sure it it's 'no' or 'none' */
background-position: top;
}
.windowbg2
{
color: #000000;
background-image: url(images/postback2gif);
background-color: #E1E1E1;
background-repeat: no; /*i'm not 100% sure it it's 'no' or 'none' */
background-position: top;
}
that should align the image to the top, and if you make it a gradiant, going from a dark, or a light color to the color you've set in the CSS file, you can really make a cool effect with it
you could also use only the image, but you have to replace the code

Code:
background-repeat: no;
with:

Code:
background-repeat: repeat-xx;
and remove:

Code:
background-position: top;
-
now, you can do this for everything, including the titles, or the background of the whole theme!


Please note that the tute was written originally by patrick.
I've only added the last part a bit.
Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 10:53 AM   #36 (permalink)
 
SpawnDemon's Avatar
 
Title: Bluepearl Veteran
Join Date: Jul 2005
Location: Philadelphia, Pennsylvania - Home Base
Posts: 727
Rep Power: 4 SpawnDemon is on a distinguished road
Send a message via MSN to SpawnDemon Send a message via Skype™ to SpawnDemon
Re: Private forum :: how to create?

Holy Ship Captain! I will be sure to check this out. This looks most awesome!
__________________
What did he say? A new e1studios site? Where can I get some. Click Here!
SpawnDemon is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 11:35 AM   #37 (permalink)
 
autumn whispers2me's Avatar
 
Title: Bluepearl Veteran
Join Date: May 2005
Location: Mobile, AL
Age: 47
Posts: 1,035
Rep Power: 5 autumn whispers2me is on a distinguished road
Send a message via Yahoo to autumn whispers2me
Re: Private forum :: how to create?

Very interesting, Frag! Thanks for posting that!

Spawn.... did you use brushes to make your sig????? I want sum!!! I like! looks like maybe leaves? VERY cool! I'd like to have an entire BB theme made like that.
__________________

Autumn Whispers to Me - The Corridors - Ghost in the Lens
"In a dusty corner of the room a light glows from a crack in the toybox lid:
Something quickens inside the wooden womb." -- E. Riddle, 2004
autumn whispers2me is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 12:26 PM   #38 (permalink)
 
SpawnDemon's Avatar
 
Title: Bluepearl Veteran
Join Date: Jul 2005
Location: Philadelphia, Pennsylvania - Home Base
Posts: 727
Rep Power: 4 SpawnDemon is on a distinguished road
Send a message via MSN to SpawnDemon Send a message via Skype™ to SpawnDemon
Re: Private forum :: how to create?

It's Acutually brushes... It's pretty awesome, I will see if I can send them to you.
__________________
What did he say? A new e1studios site? Where can I get some. Click Here!
SpawnDemon is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 01:29 PM   #39 (permalink)
 
autumn whispers2me's Avatar
 
Title: Bluepearl Veteran
Join Date: May 2005
Location: Mobile, AL
Age: 47
Posts: 1,035
Rep Power: 5 autumn whispers2me is on a distinguished road
Send a message via Yahoo to autumn whispers2me
Talking Re: Private forum :: how to create?

Cool!! Thanks, Spawn!!

again, Frag----that was great info! I copied the link to this thread cuz I'll probably need that information later. lol
__________________

Autumn Whispers to Me - The Corridors - Ghost in the Lens
"In a dusty corner of the room a light glows from a crack in the toybox lid:
Something quickens inside the wooden womb." -- E. Riddle, 2004

Last edited by autumn whispers2me; 07-23-2005 at 01:31 PM.
autumn whispers2me is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2005, 09:27 PM   #40 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 19
Posts: 4,436
Images: 1
Rep Power: 9 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: Private forum :: how to create?


i've also started to disect an simple theme, and making a complete new one out of that is easier than i tought
(ive cheated a bit with the *page created in ... seconds* because i want it in the header
just random numbers now, lol
Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads for: Private forum :: how to create?
Thread Thread Starter Forum Replies Last Post
SubForuns at Forum Description CCV_Pinto bo20 1 11-03-2007 05:46 PM
Banned Private Messaging Spammer Sean Bluepearl Announcements 13 10-17-2007 06:21 PM
Spammed phpBB forum Sean Bluepearl Announcements 4 04-10-2007 03:56 PM
Affiliation - Hazard Forum Rowan Affiliation 11 05-16-2006 10:58 PM
New Forum Xthar Need Help? 4 11-23-2005 03:32 AM


  
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Bluepearl Templates

All times are GMT +11. The time now is 09:44 PM.

 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52