Topic: New and Confused *Changing post status indicators * help
I installed the forum two days ago, since then I have spent hours trying to make some of the more simple Mods work.
The main one that I have been trying to get to work is the one below.
I have inserted that code in the right place a million times, created the proper folder and .gif pics, changed the YOURSTYLE to the name of my style, I can't get this to work.
I am useing the latest version of PunnBB.
I'm on windows XP useing dreamweaver to edit code.
I am running punnbb on a Lynux server.
Is there something else I need to do to tweak something before this will work?
Is there a better program that I can use to edit files?
What program can I use with .tpl files and .tar files?
I am new to php so , be gentle
in yourstyle.css:
/**************************************************/
/* 10. POST STATUS INDICATORS */
/**************************************************/
/* 10.1 These are the post status indicators which appear at the left of some tables.
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
.isticky = sticky topics. By default only .inew is different from the default.*/DIV.icon {
FLOAT: left;
DISPLAY: block;
width:16px;
height:16px
}DIV.searchposts DIV.icon {MARGIN-LEFT: 0}
/* 10.2 Class .tclcon is a div inside the first column of tables with post indicators. The
margin creates space for the post status indicator */TD DIV.tclcon {MARGIN-LEFT: 1.7em}
TD.tcl {padding-left:3px;}in yourstyle_cs.css:
/******************************************************//* 5. POST STATUS INDICATORS */
/******************************************************/
/* These are the post status indicators which appear at the left of some tables.
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
.isticky = sticky topics. The default is "icon". By default only .inew is different.*/DIV.icon {background:url(../../img/YOURSTYLE/icon.gif)}
DIV.inew {background:url(../../img/YOURSTYLE/icon_new.gif)}
TR.isticky DIV.icon {background:url(../../img/YOURSTYLE/sticky.gif)}
TR.isticky DIV.inew {background:url(../../img/YOURSTYLE/sticky_new.gif)}
TR.iclosed DIV.icon {background:url(../../img/YOURSTYLE/closed.gif)}TR.iredirect DIV.icon {background:url(../../img/YOURSTYLE/redirect.gif)}