Topic: Text overflow
This is a little workaround if text overflows the post box.
Preview:
http://lucasmalor.netsons.org/forum/vie … p?pid=2#p2
In style/Oxygen/Oxygen.css
find
.main .post-entry {
padding: 0.3em 1em 0 1em;
after add
overflow: auto;
find
.main .entry-content {
padding-bottom: 0.8em;
after delete
overflow: hidden;
find
.main .entry-content blockquote {
overflow: hidden;
width: 100%;
}
replace with
.main .entry-content blockquote {
overflow: auto;
width: 100%;
max-height: 16em;
}
after add
.main .entry-content .postimg {
overflow: auto;
}
In style/Oxygen/Oxygen_ie6.css
find:
* html .entry-content .codebox pre { /* 6 Only */
overflow: visible;
overflow-x:auto;
padding-bottom: 2em;
}
replace with
* html .entry-content .codebox pre { /* 6 Only */
height: expression( this.scrollHeight > 465 ? "450px" : "auto" );
overflow:auto;
word-wrap: normal;
padding-bottom: 2em;
}
.main .entry-content blockquote {
height: expression( this.scrollHeight > 225 ? "210px" : "auto" );
overflow:auto;
word-wrap: normal;
}
.main .post-entry {
word-wrap: break-word;
}
In include/parser.php
find
$img_tag = '<span class="postimg"><img src="'.$url.'" alt="'.htmlspecialchars($url).'" /></span>';
replace with
$img_tag = '<div class="postimg"><img src="'.$url.'" alt="'.htmlspecialchars($url).'" /></div>';