MyBB Community Forums
White spaces between each topic. - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Themes (https://community.mybb.com/forum-103.html)
+---- Forum: Theme Development (https://community.mybb.com/forum-105.html)
+---- Thread: White spaces between each topic. (/thread-196152.html)



White spaces between each topic. - camman00 - 2016-07-25

Hello I am very new to developing themes. I just have a hopefully simple question about the whitespace in between the 2 categories? Can someone tell me where to look for setting the background color to black. Thanks!

Here is the link for the picture: https://gyazo.com/967eb59740015593fdd0d9393423e48b .

Thank you for your time   Heart


RE: White spaces between each topic. - Ashley1 - 2016-07-25

It looks like there is a bottom border set on the rows of forumbit_depth2_forum template under forumbit templates.


RE: White spaces between each topic. - camman00 - 2016-07-26

@Ashley1 , Thanks for the quick reply. I messed around with the template and it did not get me anywhere and remember I want to remove the white space (the body background is black). Can you please give me some guidance, Thanks.


RE: White spaces between each topic. - Eric - 2016-07-26

You'll probably want to do something like this, or find the related CSS in global.css:

.trow1, .trow2 {
    border-bottom: 0;
}



RE: White spaces between each topic. - camman00 - 2016-07-26

Thank you so much! <3