MyBB Community Forums

Full Version: Text Overhang Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Everytime I post a something rather large in my forum, I get an annoying overlay problem.

As seen here: [Image: a7ea72d43b.png]

Same thing also happens in portal:
[Image: 09d9d398e5.png]

can anyone help?
Can you give a link so that we can give you an exact solution?

Found it at http://thegamingbuzz.com/forum, but it's closed for maintenance.
How did you do that? whoaaa. ahah.

So your suggesting I should open it?

(2014-06-22, 12:37 PM)Rymax99 Wrote: [ -> ]Can you give a link so that we can give you an exact solution?

Found it at http://thegamingbuzz.com/forum, but it's closed for maintenance.

How did you find that? whoaa.

So you suggesting I should I open it?
(2014-06-22, 12:41 PM)iJoshAU Wrote: [ -> ]How did you do that? whoaaa. ahah.

So your suggesting I should open it?

(2014-06-22, 12:37 PM)Rymax99 Wrote: [ -> ]Can you give a link so that we can give you an exact solution?

Found it at http://thegamingbuzz.com/forum, but it's closed for maintenance.

How did you find that? whoaa.

So you suggesting I should I open it?

Find the site or strikeout the text? Toungue
Site is indexed on Google.

Yeah, I'd open it as it makes it easier to provide support on a live site.
(2014-06-22, 12:42 PM)Rymax99 Wrote: [ -> ]
(2014-06-22, 12:41 PM)iJoshAU Wrote: [ -> ]How did you do that? whoaaa. ahah.

So your suggesting I should open it?

(2014-06-22, 12:37 PM)Rymax99 Wrote: [ -> ]Can you give a link so that we can give you an exact solution?

Found it at http://thegamingbuzz.com/forum, but it's closed for maintenance.

How did you find that? whoaa.

So you suggesting I should I open it?

Find the site or strikeout the text? Toungue
Site is indexed on Google.

Yeah, I'd open it as it makes it easier to provide support on a live site.

Find the site Toungue didnt realize it was on google.

Opened for the time being .
The overhang problem stems from large images. The images are breaking the layout, this is to be addressed in MyBB 1.8 if I'm correct.

For now, you can re-size images with either a plugin, or a CSS based solution.

A decent plugin for re-sizing images is: http://mods.mybb.com/view/fit-on-page

A CSS based solution would be something like this:
.post_body img {
width:100%;
height:auto;
}
(2014-06-22, 12:55 PM)Rymax99 Wrote: [ -> ]The overhang problem stems from large images. The images are breaking the layout, this is to be addressed in MyBB 1.8 if I'm correct.

For now, you can re-size images with either a plugin, or a CSS based solution.

A decent plugin for re-sizing images is: http://mods.mybb.com/view/fit-on-page

A CSS based solution would be something like this:
.post_body img {
width:100%;
height:auto;
}

Although this did fix the problem, its coming up with annoying information messages everywhere. and scaling down everything.

EDIT* After a refresh I found that this had solved the problem, except something still isnt right in portal
(2014-06-22, 01:05 PM)iJoshAU Wrote: [ -> ]
(2014-06-22, 12:55 PM)Rymax99 Wrote: [ -> ]The overhang problem stems from large images. The images are breaking the layout, this is to be addressed in MyBB 1.8 if I'm correct.

For now, you can re-size images with either a plugin, or a CSS based solution.

A decent plugin for re-sizing images is: http://mods.mybb.com/view/fit-on-page

A CSS based solution would be something like this:
.post_body img {
width:100%;
height:auto;
}

Although this did fix the problem, its coming up with annoying information messages everywhere. and scaling down everything.

There might be a setting to disable it from showing the message, but if you just want a very simple solution to scale down images in posts so that they don't break the layout, I'd recommend the CSS based solution.

.post_body img {
width:100%;
height:auto;
}
(2014-06-22, 01:06 PM)Rymax99 Wrote: [ -> ]
(2014-06-22, 01:05 PM)iJoshAU Wrote: [ -> ]
(2014-06-22, 12:55 PM)Rymax99 Wrote: [ -> ]The overhang problem stems from large images. The images are breaking the layout, this is to be addressed in MyBB 1.8 if I'm correct.

For now, you can re-size images with either a plugin, or a CSS based solution.

A decent plugin for re-sizing images is: http://mods.mybb.com/view/fit-on-page

A CSS based solution would be something like this:
.post_body img {
width:100%;
height:auto;
}

Although this did fix the problem, its coming up with annoying information messages everywhere. and scaling down everything.

There might be a setting to disable it from showing the message, but if you just want a very simple solution to scale down images in posts so that they don't break the layout, I'd recommend the CSS based solution.

.post_body img {
width:100%;
height:auto;
}

and were would I place that?
(2014-06-22, 01:09 PM)iJoshAU Wrote: [ -> ]
(2014-06-22, 01:06 PM)Rymax99 Wrote: [ -> ]
(2014-06-22, 01:05 PM)iJoshAU Wrote: [ -> ]
(2014-06-22, 12:55 PM)Rymax99 Wrote: [ -> ]The overhang problem stems from large images. The images are breaking the layout, this is to be addressed in MyBB 1.8 if I'm correct.

For now, you can re-size images with either a plugin, or a CSS based solution.

A decent plugin for re-sizing images is: http://mods.mybb.com/view/fit-on-page

A CSS based solution would be something like this:
.post_body img {
width:100%;
height:auto;
}

Although this did fix the problem, its coming up with annoying information messages everywhere. and scaling down everything.

There might be a setting to disable it from showing the message, but if you just want a very simple solution to scale down images in posts so that they don't break the layout, I'd recommend the CSS based solution.

.post_body img {
width:100%;
height:auto;
}

and were would I place that?

ACP > Templates&Style tab > your theme > global.css
You can put the code anywhere, just make sure it's not in the middle of anything.
Pages: 1 2