Drupal Gmap 视图 - 弹出窗口太大
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将整个块包装在带有类的 div 中,那么您可以使用宽度来定位该类。
例如
,将此 css 添加到您的页面:
这对我有用。
If you wrap the whole chunk in a div with a class then you can target that class with a width.
e.g.
And add this css to your page:
That works for me.