答案 0 :(得分:1)
您需要覆盖默认theme_image并删除width
和height
属性,或将其值设置为auto
。
示例:
// In your theme's template.php file
function [YOUR_THEME]_image($variables) {
$attributes = $variables['attributes'];
$attributes['src'] = file_create_url($variables['path']);
foreach (array('alt', 'title') as $key) {
if (isset($variables[$key])) {
$attributes[$key] = $variables[$key];
}
}
return '<img' . drupal_attributes($attributes) . ' />';
}