0

何らかの理由で、Wordpress がウィジェットの前に改行を挿入し、それが私の Web サイトから外れてしまいます。

下部にあるhttp://mytimeforart.com/galleries/pen-and-ink/をご覧ください。ここには 3 つの列 (最近のツイート、お問い合わせ、空白の列) があります。ウィジェットのタイトルの上のギャップが見えますか? それが謎の改行の結果です。

これは、中央のウィジェットのソース コードです。

<div id="footer-mid">&lt;div class="bottom-widget"><h4>Inquire With Us</h4>           <div class="textwidget">Lorem ipsum dolor sit amet cons ecter adipisicing elit, sed a eiuma smod temp incididunt ut<br>
<a href="/contact"><img src="/wp-content/uploads/2013/02/inquire.png" border="0" style="margin-top:6px"></a></div>
</div></div>

そして、それが私のテーマでどのように設定されているか:

<div id="footer-mid"><?php get_sidebar('bottom-2'); ?></div>

そして、それが私の functions.php でどのように設定されているか:

if ( function_exists('register_sidebar') )
register_sidebar(array('name'=>'Sidebar Bottom 2',
'before_widget' => '<div class="bottom-widget">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));

どんな助けでも大歓迎です!

ありがとう、

シンシア

4

1 に答える 1

1

まだ BOM の問題があります。http://validator.w3.org/check?uri=http%3A//mytimeforart.com/galleries/pen-and-ink/&doctype=Inline&ss=1&group=0&user-agent=W3C_Validator/1.654を参照してください。

于 2013-02-17T15:51:12.790 に答える