MyBB Community Forums

Full Version: CSS Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm working on a new forum and I would like to remove the two vertical bars circled below, as I am not using post icons on this forum:

[Image: BorderHmm.png]

The closest I was able to get to the right CSS ID was td.trow2.forumdisplay_regular but that ID is for more than just the area I'm looking for.

I'm hoping this is as simple as:

Correct_CSS_ID {
border-left: 0px solid transparent !important;
border-right: 0px solid transparent !important;
}

I appreciate any help!
Forumdisplay_showthread template

	<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>

Delete it.
You'll find this line in search_results_threads_thread too.


<td align="center" class="{$bgcolor}" width="2%">{$icon}</td>

Also delete.
Thanks for the help!

(2010-12-30, 02:08 AM)Solidus Wrote: [ -> ]Forumdisplay_showthread template

	<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>

I'm using MyBB 1.6.0 and do not see a "forumdisplay_showthread" template.

Do you perhaps mean forumdisplay_thread or forumdisplay_threadlist?

This is what I see:

[Image: templatelist.jpg]
(2010-12-30, 02:08 AM)Solidus Wrote: [ -> ]Forumdisplay_showthread template

That's not in the forumdiaplsy_showthread template :s

@OP: Go to : ACP > templates > Forumdisplay Templates > forumdisplay_thread > and find and remove the following;
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>

Now Go to: ACP > templates > Forumdisplay Templates > forumdisplay_threadlist > and find the following;
<td class="tcat" colspan="3" width="66%">

and replace it with the following;
<td class="tcat" colspan="2" width="66%">

Should result into this;
Yea that's what I meant.
(2010-12-30, 11:46 AM)Solidus Wrote: [ -> ]Yea that's what I meant.

LOL Toungue

@OP: Did you checked my edits ?
Thank you so much, both of you!

Everything is now perfect. Smile
Please hit the solve button too Smile