Does this look good?
Does this look good?
give it some colors because now it looks so stupid give it some light colors like here and add some lines to it so it looks like tables
but that's my opinion
Nice work, keep up the good work
Last edited by nightscream; 02-20-2006 at 01:35 PM.
------------------------------------------------------------------------------------------
If you have any troubles with a website or a script, just send me a pm.
I also code websites in xHTML/css, can code javascript and php too if needed
Yes, Sheepoholics is. See the message in the top left. I favor PunBB check out my site http://medalofhonorhq.be/forum/ there easy to code.
It does say that in the image ;-)Originally Posted by dharmil
Anyway, I have no idea what the deafult looks like so I can't compare... From what I see, I like it, smooth and sleek. Although it does look a little bare, and the title could do with centreing
Is what I spent Last night working on I'm goin to get rid of or change the colour of the creme bar. As for the title I'm going to make a set of logo's that change depending on style sheet you have.
Enigma: I like your forum. personally I prefer the less wide forum but that's just me. Also I want to add a link to my navlink bar but I want it to be only accesible to registered members. I added the word to lang_common but I don't understand the Link ID. Do you know how to do this?
I do if you teach me how to make the forum less wide.
Thats really easy.
scroll down to 5. Vertical and page spacing in your theme.css file (not your theme_cs.css file) and replace
withCode:#punwrap {margin:12px 20px}
just replace the 750 with what ever you want your width to be.Code:#punwrap { margin: 12px auto 20px auto; width: 750px; }
Edit: would you be able to write a sound tag. It should be fairly easy. Some edits in paser.php but I don't know what to do.
Last edited by Sheepoholics; 02-20-2006 at 05:01 PM.
A sound tag like embedded sound.
Yeah basically it would work like the image tag replaces[ img]x.jpg[/img] with <img src'x.jpg'> or whatever except it would do something like replace [snd]x.mp3 [/snd] with something like
Code:<script type="text/javascript"> var sndURL = 'sound.mp3'; var hasWMP = false; var hasQT = false; var playWMP = '<object id="MediaPlayer" width=320 height=45 classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" standby="Loading Windows Media Player components..." type="application/x-oleobject"><param name="url" value="' + sndURL + '" /><param name="autoStart" value="0" /><param name="volume" value="100" /><embed type="application/x-mplayer2" src="' + sndURL + '" name="MediaPlayer" autostart=0 volume="100" width=320 height=45></embed></object><br />'; var playQT = '<embed src="' + sndURL + '" autostart="FALSE" width=144 height=16><br />'; var playLink = '<a href="' + sndURL +'">[SOUND: ' + sndURL + ']</a><br />'; if (navigator.appName == "Microsoft Internet Explorer") { document.writeln(playWMP); } else { for (i = 0; i < navigator.plugins.length; i++ ) { if (navigator.plugins[i].name.indexOf('Windows Media') >= 0) { hasWMP = true; } else if ((navigator.plugins[i].name.indexOf('QuickTime') >= 0)) { hasQT = true; } } if (hasWMP) { document.writeln(playWMP); } else if (hasQT) { document.writeln(playQT); } else { document.writeln(playLink); } } </script> <noscript><a href="sound.mp3">[SOUND]</a></noscript></div>