如何在 Drupal 中将节点的图像设置在其他信息的左侧?
How set the image of a node to the left of the other info in Drupal?
我使用 Drupal(结构 -> 内容类型)为书籍创建了一个内容类型,并添加了名称、描述、出版年份等字段。默认布局使用 CorporateClean 主题看起来像这样:
我希望它是这样的:
我试图在我的主题目录中的 style.css
中包含以下几行:
#content img {
float:left;
margin-right: 15px;
}
我得到了这个结果:
使用字段自定义 Drupal 内容的最佳方法是什么?
是否存在专用模块?
我阅读了有关 php 个文件(在主题目录中)以自定义特定内容。你有这方面的经验吗?
在您的 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;
}
我使用 Drupal(结构 -> 内容类型)为书籍创建了一个内容类型,并添加了名称、描述、出版年份等字段。默认布局使用 CorporateClean 主题看起来像这样:
我希望它是这样的:
我试图在我的主题目录中的 style.css
中包含以下几行:
#content img {
float:left;
margin-right: 15px;
}
我得到了这个结果:
使用字段自定义 Drupal 内容的最佳方法是什么?
是否存在专用模块?
我阅读了有关 php 个文件(在主题目录中)以自定义特定内容。你有这方面的经验吗?
在您的 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;
}