我使用Drupal(Structure->种类的内容)为书籍创建了内容类型,并添加了名称,描述,发布年份等字段。 CorporateClean 主题的默认布局看起来像这样:
我希望它是这样的:
我尝试在style.css
的主题目录中包含以下行:
#content img {
float:left;
margin-right: 15px;
}
我得到了这个结果:
使用字段自定义Drupal内容的最佳方法是什么?
是否存在专用模块?
我读了关于php文件(在主题目录中)来定制细节内容。你有经验吗?
答案 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;
}