标签:style blog http color io os ar strong for
ecshop加广告出现广告位的宽度值必须在1到1024之间的解决方法,这个问题是今天刚刚发现的,我就郁闷了,现在1024宽度的广告能做什么,你看看京东,天猫,很多都是大型的横幅广告,这点ecshop有待改善更新,本来这个东西就不该限制的。如下图,ecshop宽度限制
解决办法如下:
一、打开 admin/ad_position.php这个文件,搜索1024,这里你会搜到两个地方
//在236行左右 if ($ad_width > 1024 || $ad_width < 1) //与270行左右 if ($ad_height > 1024 || $ad_height < 1) //这里的1024改成1024000000
if (document.forms['theForm'].elements['ad_width'].value > 1024 || document.forms['theForm'].elements['ad_width'].value == 0) 这里的1024改成1024000000
标签:style blog http color io os ar strong for
原文地址:http://blog.csdn.net/cswlsh/article/details/39375829