我应该在 Garland 主题页面中放置哪种尺寸的广告?
我正在为我的网站使用花环主题。我已准备好在顶部和底部放置广告。
但这个主题不是固定布局。我的意思是,当我将浏览器移至 800x600 显示器时,内容区域的大小会调整为更小的区域。
所以我想放置728宽度的横幅广告,但是当窗口很小时,这个广告就会被切断。我还有另一种选择,尝试使用 468 宽度的广告横幅。
我的问题是如何选择广告横幅并确保当窗口调整为较小尺寸时它不会被截断?
I'm using garland theme for my site. I'm ready to place ad's in the top and bottom.
But this theme isn't fixed layout. I mean when I move browser to 800x600 monitor the content region is resized to smaller one.
So I was thinking to place banner ad of 728 width, but when the window is small then this ad will cut off. I've another option of trying with 468 width ad banner.
My question is how should I choose an ad banner and also make sure that it does not get cutoff when window is resized to smaller dimension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,如果您想要长答案...找出用户正在使用的分辨率并相应地设置您的横幅。
步骤:
为您的横幅图像(或 div)提供 ID。
将此脚本放在 page.tpl.php 的头部或创建一个 file.js 并将其包含在 template.info 中。
注意:将“idElement”更改为您的横幅的 id。
编辑:
所以你正在使用谷歌广告之类的东西,对吗?然后您可以使用上面相同的逻辑,并进行一些调整。例如...
您可以将 3 个横幅广告放入
标记内。假设您有一个宽度为 1000、800 和 300 的横幅。
现在在我给你的上面的js脚本中进行了更改
所以
基本上你将所有横幅放置在页面中但它们是隐藏的。当 jscript 浏览器解析时,它会取消隐藏显示相应横幅的 div。
您还可以使用
标记并将横幅代码放置在其他文件中。同样的逻辑。
或者你可以使用 PHP 和 JS 来完成这个... 使用 PHP 检测屏幕分辨率但是我觉得有点过头了。
well, if you want the long answer... find out the resolution the user is using and set your banner acordingly.
steps:
give an ID to your banner image (or div).
put this script in the head of your page.tpl.php or create a file.js and include it in your template.info.
note: change "idElement" with the id of your banner.
EDIT:
So you're using something like google ads right? Then you can use the same logic above, with a few tweaks. For instance...
You can put 3 banner ads inside
<div>
tags. Let's say you have a banner with 1000 width, 800 width and 300 width.now in the js script I gave you above change
with
So basically you place all banners in your page but they are hidden. When the jscript browser resolution, it unhides the div showing the appropriate banner.
You can also use
<iframe>
tags and place your banner code in other file. Same logic.Or you can use PHP ans JS to acomplish this... Detect screen resolution using PHP but I think is kind of overshot.
在这种情况下,您必须根据您想要支持的最低分辨率进行选择。
468x60 横幅是相当标准的,应该足够小以适应缩小的浏览器或更小分辨率的屏幕。
In this case you have to choose based on the lowest resolution you want to support.
468x60 banners are pretty standard and should be small enough to fit on scaled down browsers or smaller resolution screens.