MyBB Community Forums

Full Version: how can i do fix width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hi to all
sorry for bad english
how can i do fix width the area post
if see picture may be can help me
[attachment=30513]
and this link : http://www.mob2.ir/thread-4958-post-17216.html#pid17216

thanks Heart
You have a very lengthy word in the post. Generally this CSS3 code should work for this situation:
word-wrap:break-word;

Reference:
http://www.w3schools.com/cssref/css3_pr_word-wrap.asp

Since its a premium theme from Audentio you can ask support from them at their site if you have purchased it (unsure about how you've removed the credit line).
thank you
If it is possible
More help me please
How do I use this code
^ just a note: as effone said, we are not supposed to provide help for the premium themes & premium plugins
this problem to all theme
see this theme(it is default theme)
[attachment=30515]
this link : http://www.mob2.ir/thread-4958-post-17216.html#pid17216
(2013-11-14, 07:33 AM)admin13 Wrote: [ -> ]this problem to all theme

I'm not sure what you want...
You mean the empty space between text and border ?

[Image: support_002.jpg]

To remove that empty space you must to go in Admin CP -> Templates&Style -> Themes -> YOUR Theme -> Editing global.css (in Advanced Mode) and search ".post_content".

[Image: support_003.jpg]

Change the value of 10px to... 5px or less... Also you can delete this value.
Something like:
.post_content {
	padding: 5px 5px;
}
or
.post_content {
	padding: 5px;
}
I can not properly explain I want Long text does not disrupt Style
See the link below You will notice That Writing width of the mold is removed

plz see this link : http://www.mob2.ir/thread-4958-post-17216.html#pid17216

thanks for help
I think that you must to try the solution exposed by effone here.
Check this: example

Try to add in your global.css - in ".post_content" this line: word-wrap: break-word;

Example:
.post_content {
    padding: 5px 10px;
    word-wrap: break-word;
}
thank s but that is not work

[attachment=30516]
I see that you paste in global.css:
.wtext {
word-wrap: normal|break-word;
}
bur will not work.
You must to use or normal or break-word (not both!).
Anyway, try what I said above.


Let me to check your css... I really don't know how to solve this... maybe others know better. I will try to find a solution.
Basically you want those long words to be broken into 2 or more pieces, right?
Pages: 1 2