MyBB Community Forums

Full Version: I need a little help on this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi i downloaded a plugin for custom icons but the thing is it shows icons but with read thread,unread and lock thread icons as well.




here how it looks like 






[attachment=33112]






but i want to make it like this






[attachment=33113]






So i uploaded the pics just in case you see the difference and what i want to do with it,

So any one here can pls assist me on this.

It'll be highly appreciated,

Thanks.
( I think there is something which has to be changed in theme so i posted it in this section or if it is wrong then do transfer it to appropriate section)
forumbit_depth2_forum template consists of code for that column cell. you can remove that.

MyBB 1.8.x
<td class="{$bgcolor}" align="center" valign="top" width="1"><span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span></td>

MyBB 1.6.x
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
Thankyou very much mate for your help but a little problem occurs after i remove it,
before
[attachment=33115]
after
[attachment=33116]
what i wanted actually that happened by this code but alignment goes out.
So how can i fix it?
^ oh! you can add below code in place of the removed content in forumbit_depth2_forum template
<td class="{$bgcolor}" align="center" valign="top" width="1">&nbsp;</td>
first off all thanks again for replyng this soon
and there's nothing changed when i put this code there it shows same as above
and when i open the template again the same code changes into
<td&nbsp;class="{$bgcolor}"&nbsp;align="center"&nbsp;valign="top"&nbsp;width="1">&nbsp;</td> 
So is there a working solution for it.
Thanks
^ which version of MyBB you are using ?
you have to turn off Codepress / Code Mirror at the preferences of admin panel and add the suggested code again !
alternatively you can check in forumbit_depth1_cat template and if you find <td class="tcat" colspan="3"> change it as <td class="tcat" colspan="2"> 
(2014-11-29, 03:53 AM)Ok now it works like a charm , i did remove this code what you said here. forumbit_depth2_forum template consists of code for that column cell. you can remove that. Wrote: [ -> ]MyBB 1.8.x


<td class="{$bgcolor}" align="center" valign="top" width="1"><span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span></td>

MyBB 1.6.x


<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>

and did not put this code in replacement

(2014-11-29, 04:10 AM).m. Wrote: [ -> ]^ oh! you can add below code in place of the removed content in forumbit_depth2_forum template


<td class="{$bgcolor}" align="center" valign="top" width="1">&nbsp;</td>

and added this code to the depth1_cat template and it gives me the result what i wanted

(2014-11-29, 06:58 AM)mmadhankumar Wrote: [ -> ]alternatively you can check in forumbit_depth1_cat template and if you find <td class="tcat" colspan="3"> change it as <td class="tcat" colspan="2"> 

Thanks very much guys you helped me so much really appreciate it.