Quote:
Originally Posted by Barakat
iam useing this and its usefull also .
in the same file and the same code just find this code :-
PHP Code:
return '<img src="' . $link . '" border="0" alt="" />';
replace it with :-
PHP Code:
return '<div style="width: 800px; overflow: auto;"><img src="' . $link . '" border="0" alt="" /></div>';
it will give u a frame on large pictures and will save ur style as it is .
just choose the width as u want the picture to be shown and thats all ...
any way i will try ur code also
|
Actually a better way (without editing a .php core file) is to modify the template "postbit" or "posbit_legacy" such as:
Find:
Code:
<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div> <!-- / message -->
Replace with:
Code:
<!-- message -->
<div id="hideauto">
<div id="post_message_$post[postid]">$post[message]</div>
</div>
<!-- / message -->
And in the Main CSS in the "
Additional CSS Definitions " add:
Code:
#hideauto {
width:540px;
padding-bottom:10px;
overflow:auto;
}
1. Change width to specified dimension.
2. Padding is to prevent images (smilies) from being cut off.
3. Overflow can be set to "auto" (for scrollbars) or "hidden" (cutoff excessive images).
*Again, no .php files have been modified for this to work.