help.lbi - 帮助内容中的求助,愿高手能指点

2016-07-07 16:42 来源:www.chinab4c.com 作者:ecshop专家

问题一.怎么能把2修成像1大小呀(主要是想把客服中心一栏的高度修小点,官方的大高了,不适合我用)
问题二.怎么让13对齐呢?(我修小了1,但和3又对不齐了.)




这是我现在的代码,请大家帮我看看哪里有问题,详细说明一下,谢谢大家.(我用的是烧包版)

<meta http-equiv="Content-Type" c>
<div id="help-center">
<table width="100%" border="0" cellpadding="00" cellspacing="0">
<tbody>
<tr>
<td style="border:1px solid #B2BDBE;border-right:0px;background:#FFF;"><table width="100%" border="0" cellpadding="0" cellspacing="0" style="height:160;">
<tr>
<td width="135" height="160"><img src="themes/shaobag/images/help-center.gif" width="135" height="160" alt="" /></td>
<td style="border:1px solid #B2BDBE;border-right:0px;background:#FFF;"><table width="100%" border="0" cellpadding="0" cellspacing="0" style="height:194px;">
<tbody>
<tr>
<td class="help-title">◇特别提醒◇</td>
<td class="help-title">◇购买帮助◇</td>
<td class="help-title">◇付款方式◇</td>
<td class="help-title">◇联系我们◇</td>
</tr>
<tr>
<td class="help-list"><ul>
<li><A href="article.php?id=12">常见问题</A></li>
<li><A href="article.php?id=18">说说心里话</A></li>
<li><A href="article.php?id=29">实事求是</A></li>
</ul></td>
<td class="help-list"><ul>
<li><A href="article.php?id=11">购买指南</A></li>
<li><A href="article.php?id=13">发货查询</A></li>
<li><A href="article.php?id=23">支付方式</A></li>
</ul></td>
<td class="help-list"><ul>
<li><A href="article.php?id=14">银行汇款</A></li>
<li><A href="article.php?id=15">邮局汇款</A></li>
<li><A href="article.php?id=16">在线支付</A></li>
</ul></td>
<td class="help-list"><ul>
<li><A href="article.php?id=21">联系方式</A></li>
<li><A href="article.php?id=28">售后服务</A></li>
<li><A href="article.php?id=28">关于运费</A></li>
</ul></td>
</tr>
</tbody>
</table></td>
<td style="width:209px;height:194;vertical-align:top;background:url(../images/contact-bg.gif)"><div style="margin:60px 10px 10px 10px;"> {$shop_address} {$shop_postcode}
<!-- 客服电话{if $service_phone} -->
Tel: {$service_phone}
<!-- 结束客服电话{/if} -->

回答:
是不是不在help.lbi这里修,如不是请大家说说在哪里修,具体怎么修,谢谢

看不到您的圖片呢>"<

首先,您的图片(即是您说的1)高度改为160px了,所有旁边的表格(即是您说的2)高度也要从现在的194px修改为160px.这个时候就会连您说的3.问题一并被解决了.

留心一点:

在style里面的代码需要加上尺寸单位.


错误:
  1. style="height:160;"
复制代码


正确:

  1. style="height:160px;"
复制代码

我都改了,可还是不行,代码已改成
<table width="100%" border="0" cellpadding="00" cellspacing="0">
<tbody>
<tr>
<td style="border:1px solid #B2BDBE;border-right:0px;background:#FFF;"><table width="100%" border="0" cellpadding="0" cellspacing="0" style="height:160px;">
<tr>
<td width="135px" height="160px"><img src="themes/shaobag/images/help-center.gif" width="135px" height="160px" alt="" /></td>
<td style="border:1px solid #B2BDBE;border-right:0px;background:#FFF;"><table width="100%" border="0" cellpadding="0" cellspacing="0" style="height:160px;">
高手帮我看一下吧,哪儿还有问题?

这个高度居然要修改好几处地方。

打开style.css搜索
  1. .help-list {
  2. vertical-align:top;
  3. padding:10px;
  4. height:137px;
  5. border-right:1px solid #B2BDBE;
  6. }
复制代码


去掉其中的height:137px;。

然后打开help.lbi

去掉其中的
  1. style="height:192px;"
复制代码

  1. height:194px;
复制代码