MyBB Community Forums

Full Version: I am getting error with my website in postbit section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: Screenshot-2021-01-17-07-26-49-860-com-a...chrome.jpg]

https://i.ibb.co/ZKPs8zd/Screenshot-2021...chrome.jpg

my website : https://gossipion.xyz

Test account - Test
password- test1234

i get to see a ling space in post body , please anyone help me to solve this issue....
Excuse me - only having a quick look, it's no resolution, but a clue:
This issue is definitely caused by CSS definition "display: flex" in combination with <table> elements.

My primary suggestion:
Seperate <table> elements and "flex" post contents.
Either use tables or CSS flex.
Concentrate on CSS classes ".post_container" > "#posts" > ".post".

[ExiTuS]
Hi,

errors/fixes I found:

1] the content DIV is inside the header DIV. Try to close header tag before the content DIV.

2] Temporal fix (not good enough but posts are visible):

Find in your global.css of yout theme:
#posts_container

and add:

width: 100%;


At the end it should be like:
#posts_container {
    padding: 0;
    width: 100%;
}

Ok..., I found the problem...

You have 4 columns in your table, and the posts_container TD is only 1....

You have to change:
<td id="posts_container">


to:
<td id="posts_container" colspan="4">


And you'll have full width posts.
(2021-01-17, 08:50 AM)NoRules Wrote: [ -> ]Hi,

errors/fixes I found:

1] the content DIV is inside the header DIV. Try to close header tag before the content DIV.

2] Temporal fix (not good enough but posts are visible):

Find in your global.css of yout theme:
#posts_container

and add:

width: 100%;


At the end it should be like:
#posts_container {
    padding: 0;
    width: 100%;
}

Ok..., I found the problem...

You have 4 columns in your table, and the posts_container TD is only 1....

You have to change:
<td id="posts_container">


to:
<td id="posts_container" colspan="4">


And you'll have full width posts.

Thank you so much for the help....
i get managed to fix it by edit showthread template...
yes you were right the was a <table> tag that i didn't complete , i did it and it get fixed. 
Thanks again...