Overflow for images:
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>';
in style/Oxygen/Oxygen.css
find
.main .entry-content blockquote {
overflow: auto;
width: 100%;
max-height: 16em;
}
after add
.main .entry-content .postimg {
overflow: auto;
}
Have you take a look to my css changes here?