我正在使用drupal在网站上工作。我创建了一个包含多个字段的视图。如果字段内嵌水平而不是一个接一个地垂直,我想设置一些。请在上下文中帮助我。 我想设置这些评级开始,我感兴趣的按钮和连续阅读更多链接。
答案 0 :(得分:1)
如果你熟悉html和css,你可以创建一个全新的" Global:Custom Text"字段。
从显示中排除其他字段,并在自定义文本字段中指定的样式化div容器中使用替换模式。
使用float的小脏例子:
<div style="width:50%;height:200px;float:left;">
<div style="width:100%;">Next div below me</div>
<div style="width:100%;">Previous div above me [somereplacementpattern]</div>
</div>
<div style="width:50%;height:200px;float:left;">
<div style="width:auto;float:left;">Next div on my right</div>
<div style="width:auto;float:left;">Previous div on my left<div>
</div>