Drupal Views 问题:在两列中显示结果?
我是 drupal 的新手,我有一个关于视图的问题:
我正在构建一个员工目录,需要在两列中显示结果,例如:
记录 1 记录 2
记录 3 记录 4
记录 5 记录 6 。 。 。
我怎样才能做到这一点?
为了更进一步,我希望每条记录的格式为:
IMAGE NAME
TITLE
我不知道从哪里开始。任何帮助表示感谢!
I'm new to drupal and I have a question about views:
I'm building an employee directory and need to display the results in two columns, such as:
Record 1 Record 2
Record 3 Record 4
Record 5 Record 6
. . .
How can I accomplish this?
To take it one step further, I want each record formatted as:
IMAGE NAME
TITLE
I have no idea where to start. Any assistance is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以:
还添加一些边距底部和固定高度。另外,您可能会发现添加以下内容很有用:
you can either:
add some margin-bottom and fixed-height as well. also, you may find it useful to add:
在视图中您可以
选择样式:网格(这将为您提供一个包含任意行数的表格)。
根据你的问题你可以选择2行。
和
在CSS中
.view-id-$VIEWNAME .views-row{float: left;内边距:5px;宽度:40%; }
In view you can
choose Style: Grid (this will give you a table with as many rows you'd like).
according to your question you can choose 2 row.
and
in css
.view-id-$VIEWNAME .views-row{float: left; padding: 5px; width: 40%; }
您可以将视图的样式更改为表格,这将为您提供列。
首先,添加一个 Node: Type 过滤器,仅显示您想要的内容。
接下来,添加您的字段。您可以将标签更改为列的名称。
然后在基本设置下,将样式标志更改为表格(或其他格式,如果您愿意)。
然后您可以看到实时预览如何输出您的视图。
You could change the style of your view to Table, which would give you columns.
First, add a Node: Type filter that only displays the content you want.
Next, add your fields. You can change the Label to the name of the column.
Then under Basic Settings, change the Style flag to Table (or another format if you prefer).
You can then see how the live preview outputs your view.