Forum Style Sheet

Sheepoholics

New Member
Messages
266
Reaction score
0
Points
0
RRs91756.gif

Does this look good?
 

nightscream

New Member
Messages
948
Reaction score
0
Points
0
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:

Woolie

Member
Messages
862
Reaction score
0
Points
16
dharmil said:
are you using Pun BB

It does say that in the image ;-)

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
 

Sheepoholics

New Member
Messages
266
Reaction score
0
Points
0
css.gif

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?
 

Sheepoholics

New Member
Messages
266
Reaction score
0
Points
0
Thats really easy.


scroll down to 5. Vertical and page spacing in your theme.css file (not your theme_cs.css file) and replace
Code:
#punwrap {margin:12px 20px}
with
Code:
#punwrap {
	margin: 12px auto 20px auto;
         width: 750px;
}
just replace the 750 with what ever you want your width to be.



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:

Sheepoholics

New Member
Messages
266
Reaction score
0
Points
0
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>
 

Sheepoholics

New Member
Messages
266
Reaction score
0
Points
0
Dosen't work I've tired it before and I only really want sound video seems to much to me.
 
Top