Topic: How to put a pic on the new post Box?

this is what it is now!! -on new post
http://www.cma.clanservers.com/files/images/blue-box.bmp

No new post
http://www.cma.clanservers.com/files/images/box.bmp

-------

And this is what i would like for it to look like...

New Post
http://www.cma.clanservers.com/files/images/blue-box2.bmp

No New Post
http://www.cma.clanservers.com/files/images/box2.bmp

[img]http://ads.gameservers.com/banner/8.jpg[/img]
If you like hit me up on my forum  http://assassinkings.clanservers.com/forum/
NOTE: site is in the works.... Sorry!

2

Re: How to put a pic on the new post Box?

try replacing the bottom of style_cs.css with something like this...

/****************************************************************/
/* 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.*/

TR.iclosed Div.icon {
background-image : url(../../img/caramail/icon_closed.gif); 
} 
Div.icon {
background-image : url(../../img/caramail/icon_normal.gif); 
} 
TR.iredirect Div.icon {
background-image : url(../../img/caramail/icon_redirect.gif); 
} 
TR.inew Div.icon {
background-image : url(../../img/caramail/icon_new.gif); 
} 
TR.isticky DIV.icon {
background-image : url(../../img/caramail/icon_stiky.gif); 
}
TR.isticky DIV.inew {
background-image : url(../../img/caramail/icon_stiky_new.gif); 
}

3 (edited by doughnut 2006-12-06 19:29)

Re: How to put a pic on the new post Box?

ok i tryed


If You Can help me out i am not good at PHP / but i know Some of it..

[img]http://ads.gameservers.com/banner/8.jpg[/img]
If you like hit me up on my forum  http://assassinkings.clanservers.com/forum/
NOTE: site is in the works.... Sorry!

4 (edited by Tubby 2006-12-06 10:46)

Re: How to put a pic on the new post Box?

replace this:

/****************************************************************/
/* 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;
    MARGIN-TOP: 0.1em;
    MARGIN-LEFT: 0.2em;
    DISPLAY: block;
    BORDER-WIDTH: 0.6em 0.6em 0.6em 0.6em;
    BORDER-STYLE: solid
}

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: 2.3em}

with this:

/**************************************************/
 
/* 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:18px;
    height:18px
}
 
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;}

and adjust to fit your needs....i believe you wree just missing a width and height in there.