MyBB Community Forums

Full Version: Change Trow2 CSS in Threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where do i change the background of the Threads.
Its called Trow2 but its connected with the ones i have on Index.

How do i seperate them.

<td class="trow2 post_content ">

Need to find that i suppose, then change trow2 to something else and make a code in CSS right.

But where do i find it, let me know if i confused you my english isnt the best.
In your global.css, find:

.trow2 { ....
.....
}
Well yes not exactly what i meant, you see Trow2 is connected with the Background on my Index.
So when i change the background on Thread bits, it changes the background on Index also.

I want to separate them.
Change the class of background on index from 'trow2' to some other, for example: 'trow3' and define the properties of the new class in global.css.

.trow3 {
background: #fff;
padding: 10px;
.
.
.
.
}