Status
Not open for further replies.

StupidGlitch

Active Member
2,577
2008
538
0
Right i've got a IPB forum 2.3.x

And what i'm wanting is to remove the "new post" image column on the left ( the arrows in this pic ) then at the end of forum description have NEW! when a new post is in that section.

r1mr5u.jpg



Second reqest/issue, in thread view the post area is the same as member info all light grey ( on the left ) for some odd reason it should be alot dark like the picture below shows, have i removed abit of code somewhere? :|

x27334.jpg



Thanks in advanced. ;)
 
1 comment
for the colour. Edit the CSS. Depending on the code it would be anything. post1, post2. bg1 etc etc. Just check it out carefully.

ACP Home > Skin Manager Home > Click on the options button on your theme and EDIT CSS ADVANCED to access CSS style

------
for the icon
your going to find the NEW icon in /style_images/THEME NAME
replace the old image with your NEW! image (bc_new.gif) is the name of the icon that shows a new post

to access the code
ACP Home > Skin Manager Home > EDIT HTML ( your THEME )
> BOARD INDEX > FORUMROW

now the {$data['img_new_post']} will most likely be in the second line ish

so using stock ipb theme your TD data is


<td align="center" class="row2" width="1%">{$data['img_new_post']}</td>
Delete that line of code. thus deleting the TD and make it have 4 rows instead of 5 row

find:
<b><a href="{$this->ipsclass->base_url}showforum={$data['id']}">{$data['name']}</a></b>

replace with:

<b><a href="{$this->ipsclass->base_url}showforum={$data['id']}">{$data['name']}&nbsp;{$data['img_new_post']}</a></b>
and that should work okay.

I'm not good at explaining, So I'm sure it's confusing but post again if you need more help.
 
Status
Not open for further replies.
Back
Top