Drupal Gmap 视图 - 弹出窗口太大

发布于 2024-10-20 14:24:47 字数 282 浏览 0 评论 0原文

我正在使用 GMAP 模块及其对应的视图。我遇到的问题是,我正在使用自定义文本字段来显示从查询中提取的 html 中包含的字段。但是,弹出窗口的大小不正确,最终太大。这是我的自定义文本字段的代码:

<div id="col1">
[field_thtr_img_fid]
</div>
<div id="col2">
<h5>[title]</h5>
[address_1]
</div>

任何帮助将不胜感激!

I'm using GMAP module and its views counterpart. The issue I'm having, is I'm using a custom text field to display fields wrapped in html that I have pulled in from the query. However, the popup, won't size correctly, it ends up being too big. Here's my code for Custom Text Field:

<div id="col1">
[field_thtr_img_fid]
</div>
<div id="col2">
<h5>[title]</h5>
[address_1]
</div>

Any help would be greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撩动你心 2024-10-27 14:24:47

如果您将整个块包装在带有类的 div 中,那么您可以使用宽度来定位该类。

例如

<div class='foo'>
  .. YOUR HTML ..
</div>

,将此 css 添加到您的页面:

.foo {
  width: 75px;
}

这对我有用。

If you wrap the whole chunk in a div with a class then you can target that class with a width.

e.g.

<div class='foo'>
  .. YOUR HTML ..
</div>

And add this css to your page:

.foo {
  width: 75px;
}

That works for me.

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