Drupal Views 问题:在两列中显示结果?

发布于 2024-09-02 07:28:06 字数 261 浏览 6 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寂寞清仓 2024-09-09 07:28:06

您可以:

  • 选择样式:网格(这将为您提供一个包含任意行数的表格)。
  • 使用CSS。最快的方法:

    .view-id-$VIEWNAME .views-row{float: left;宽度:40%; }


    还添加一些边距底部和固定高度。另外,您可能会发现添加以下内容很有用:

    .view-id-$VIEWNAME .view-content{overflow:hidden;}

you can either:

  • choose Style: Grid (this will give you a table with as many rows you'd like).
  • use CSS. quickest way to do it:

    .view-id-$VIEWNAME .views-row{float: left; width: 40%; }


    add some margin-bottom and fixed-height as well. also, you may find it useful to add:

    .view-id-$VIEWNAME .view-content{overflow: hidden;}

时光瘦了 2024-09-09 07:28:06

在视图中您可以
选择样式:网格(这将为您提供一个包含任意行数的表格)。
根据你的问题你可以选择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%; }

烟─花易冷 2024-09-09 07:28:06

您可以将视图的样式更改为表格,这将为您提供列。

首先,添加一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文