質問するログイン新規登録

回答編集履歴

1

追記

2018/08/23 05:56

投稿

dit.
dit.

スコア3235

answer CHANGED
@@ -1,5 +1,65 @@
1
1
  商品名のところ(ラクビ)`</th>`の`>`が無い(`</th`になってる)
2
+ オススメ度のところ`</tr>`が1つ多い(追加した<td>が外に出て、そのあとさらに`</tr>`がついてる)
2
3
  詳しく見るのところ3つ目の`img`タグ部分が途中で消えてる
3
4
  4つ目の`td`が`tr`の外に出ている
4
5
 
5
- とりあえず気になった部分を指摘しておきます。
6
+ とりあえず気になった部分を指摘しておきます。
7
+
8
+ HTML部分だけ修正しておきました
9
+ ```html
10
+ <div class="hikakuhyo-body">
11
+
12
+ <table>
13
+ <tr>
14
+ <th>&nbsp;</th>
15
+ <th class="product-img"><a href="https://click.j-a-net.jp/1768053/725829/"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/calobyeplus_product_s.png" alt="カロバイプラス">カロバイプラス</a></th>
16
+ <th class="product-img"><a href="https://www.u-u-kan.jp/item/01/lb/"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/suppon_product_s.png" alt="肥後すっぽんもろみ酢">肥後すっぽんもろみ酢</a></th>
17
+ <th class="product-img"><a href="https://www.fancl.co.jp/pub/ot/index_lis.html"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/otonakalomit_product_s.png" alt="ラクビ LAKUBI">ラクビ LAKUBI</a></th>
18
+ <th class="product-img"><a href="https://www.otsuka-plus1.com/shop/formlp/kenja_trial1504.aspx"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/kenja_product_s.png" alt="賢者の食卓">賢者の食卓</a></th>
19
+ </tr>
20
+ <tr>
21
+ <th>『実感した!』ユーザーの評価</th>
22
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_otona_point.png" alt="98点" class="point"></td>
23
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_surattokiriri_point.png" alt="92点" class="point"></td>
24
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_kokorokaradaanshinyousan_point.png" alt="90点" class="point"></td>
25
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_kokorokaradaanshinyousan_point.png" alt="90点" class="point"></td>
26
+ </tr>
27
+ <tr>
28
+ <th>全額返金保証</th>
29
+ <td><strong class="pink">あり</strong></td>
30
+ <td>なし</td>
31
+ <td>あり</td>
32
+ <td>あり</td>
33
+ </tr>
34
+ <tr>
35
+ <th>価格</th>
36
+ <td><strong class="pink">500円</strong></td>
37
+ <td>2,740円</td>
38
+ <td>1,000円</td>
39
+ <td>1,000円</td>
40
+ </tr>
41
+ <tr>
42
+ <th>1日あたりの価格</th>
43
+ <td><strong class="pink">17円</strong></td>
44
+ <td>88円</td>
45
+ <td>33円</td>
46
+ <td>33円</td>
47
+ </tr>
48
+ <tr>
49
+ <th>オススメ度</th>
50
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_otona_star.png" alt="5" class="star"></td>
51
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_surusuru_star.png" alt="4" class="star"></td>
52
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_komachi_star.png" alt="3" class="star"></td>
53
+ <td><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_komachi_star.png" alt="3" class="star"></td>
54
+ </tr>
55
+ <tr>
56
+ <th>詳しく見る</th>
57
+ <td class="btn-more"><a href="https://click.j-a-net.jp/1768053/725829/"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_btn_more_sp.png" alt="公式サイトへ"></a></td>
58
+ <td class="btn-more"><a href="https://www.u-u-kan.jp/item/01/lb/"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_btn_more_sp.png" alt="公式サイトへ"></a></td>
59
+ <td class="btn-more"><a href="https://www.fancl.co.jp/pub/ot/index_lis.html"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_btn_more_sp.png" alt="公式サイトへ"></a></td>
60
+ <td class="btn-more"><a href="https://www.fancl.co.jp/pub/ot/index_lis.html"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/hikakuhyo_btn_more_sp.png" alt="公式サイトへ"></a></td>
61
+ </tr>
62
+ </table>
63
+
64
+ </div><!-- .hikakuhyo-body -->
65
+ ```