如何在Drupal中将节点的图像设置为其他信息的左侧?

时间:2015-03-27 20:50:01

标签: php css drupal drupal-7 themes

我使用Drupal(Structure->种类的内容)为书籍创建了内容类型,并添加了名称,描述,发布年份等字段。 CorporateClean 主题的默认布局看起来像这样:

current layout

我希望它是这样的:

desired layout

我尝试在style.css的主题目录中包含以下行:

#content img {
float:left;
margin-right: 15px;
}

我得到了这个结果:

enter image description here

使用字段自定义Drupal内容的最佳方法是什么?

是否存在专用模块?

我读了关于php文件(在主题目录中)来定制细节内容。你有经验吗?

1 个答案:

答案 0 :(得分:1)

style.css中添加以下行:

在Corporated Clean主题中,这有效:

#content img {
float:left;
margin-right: 15px;
}

#content .field {
float:left;
width: 70%;
}

#content div.field-type-image  {
width: auto;
}

在Mayo主题中,这有效:

#content img {
float:left;
margin-right: 15px;
}