MyBB Community Forums

Full Version: Add divider
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,
Quick question.

I'd like to add a white divider to divide the forums.
[Image: abed9b6a73cf0be7bca0df843b3d7fd5.png]
Any suggestions?
you can add a bottom border to trow1 and trow2 in global.css of your theme...

eg: .trow1 {border-bottom: 1px solid #FFFFFF;}
(2015-04-20, 01:51 PM)mmadhankumar Wrote: [ -> ]you can add a bottom border to trow1 and trow2 in global.css of your theme...

eg: .trow1 {border-bottom: 1px solid #FFFFFF;}

Tried that, and the white line ended up coming up everywhere.
[Image: 9f3c9c94a89225d10f2fc15d403b62e5.png]
[Image: 510f1154de14367a6f768c6889b063c2.png]
What is you forum?
(2015-04-20, 10:46 PM)adi19 Wrote: [ -> ]What is you forum?

Not currently live. It's basically on localhost on my server.
obviously it will affect all over the forums a trow is used in many pages... i just gave the idea on how to achieve the divider.. you need to add the exact css selector so it affects only the forum part... something like this...


tbody[id^="cat_"] .trow1 {border-bottom: 1px solid #FFFFFF !important;}

EDIT: if you are using a custom theme which has custom css selectors, the above code has to be changed accordingly...