<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:knowledge="http://knowledge.livedoor.com/-/spec/1.0/">
<channel>
<language>ja-jp</language>
<title>livedoor ナレッジ - user - wataradi</title>
<link>http://knowledge.livedoor.com/profile/1307</link>
<pubDate>Thu, 10 Dec 2009 18:08:47 +0900</pubDate>
<lastBuildDate>Wed, 22 Feb 2006 18:21:10 +0900</lastBuildDate>
<generator>http://knowledge.livedoor.com/</generator>
<description>livedoor knowledge - user - wataradi</description>
<copyright>Copyright 1996- livedoor Co.,Ltd.</copyright>
<image>
    <title>livedoor knowledge</title>
    <url>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</url>
    <link>http://knowledge.livedoor.com</link>
    <width>43</width>
    <height>43</height>
</image>
<item>
    <title>3コラム「iBLACK」。テンプレのプラグインが左右にずれる。 </title>
    <link>http://knowledge.livedoor.com/1040</link>
    <description>3コラム「iBLACK」。テンプレのプラグインが左右にずれる。

テンプレートははiBLACK使用。画面上に「お気に入り」などを表示すると（画面を小さくすると）、サイドバーが左右にずれてしまう。CSSとHTMLのデザインを「iBLACK」そのまま（カスタマイズなし）の状態に戻したが、解決しない。また、大きな画像なども使用していない。以前は問題なく表示されていた。</description>
    <pubDate>Wed, 22 Feb 2006 18:21:10 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/1040</guid>
    <author>wataradi</author>
    <category domain="http://knowledge.livedoor.com/category/114002">livedoorブログ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1307</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1307</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Mon, 27 Mar 2006 06:14:50 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>「続きを隠す」をクリックすると変なところに戻る。  </title>
    <link>http://knowledge.livedoor.com/804</link>
    <description>「続きを隠す」をクリックすると変なところに戻る。


追記部分に、「続きを隠す」を設置しました。そこをクリックすると、記事タイトルの部分ではなく、スクロールした位置まで戻ってしまいます（変な位置）。記事タイトルに戻るようにするためのhtmlを教えてもらえませんでしょうか。

現在のhtmlは、トップページのhtmlを以下のように変更した状態です。

&amp;lt;head&amp;gt;～&amp;lt;/head&amp;gt;内に、

&amp;lt;script type=&amp;quot;text/javascript&amp;quot; language=&amp;quot;javascript&amp;quot;&amp;gt;
function showMore(id,link){
if(document.getElementById){
if(document.getElementById(&amp;apos;more&amp;apos; + id).style.display){
document.getElementById(&amp;apos;more&amp;apos; + id).style.display=&amp;apos;block&amp;apos;;
document.getElementById(&amp;apos;show&amp;apos; + id).style.display=&amp;apos;none&amp;apos;;
document.getElementById(&amp;apos;hide&amp;apos; + id).style.display=&amp;apos;block&amp;apos;;
} else {
document.location.href=link;
return true;
}
} else {
document.location.href=link;
return true;
}
}
function hideMore(id){
if(document.getElementById){
document.getElementById(&amp;apos;more&amp;apos; + id).style.display=&amp;apos;none&amp;apos;;
document.getElementById(&amp;apos;show&amp;apos; + id).style.display=&amp;apos;block&amp;apos;;
document.getElementById(&amp;apos;hide&amp;apos; + id).style.display=&amp;apos;none&amp;apos;;
}
}
&amp;lt;/script&amp;gt; 

を追加して、次に「続きを読む」部分のhtml箇所を以下のように変更してあります。

&amp;lt;div class=&amp;quot;main&amp;quot;&amp;gt;&amp;lt;$ArticleBody$&amp;gt;&amp;lt;IfArticleBodyMore&amp;gt;&amp;lt;span class=&amp;quot;main-continues&amp;quot; id=&amp;quot;show&amp;lt;$ArticleId$&amp;gt;&amp;quot;&amp;gt;
&amp;lt;a class=&amp;quot;acontinues&amp;quot; href=&amp;quot;&amp;lt;$ArticlePermalink$&amp;gt;&amp;quot;
onclick=&amp;quot;showMore(&amp;apos;&amp;lt;$ArticleId$&amp;gt;&amp;apos;,&amp;apos;&amp;lt;$ArticlePermalink$&amp;gt;&amp;apos;);return false;&amp;quot;&amp;gt;
続きを読む&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;
&amp;lt;div class=&amp;quot;main&amp;quot; id=&amp;quot;more&amp;lt;$ArticleId$&amp;gt;&amp;quot; style=&amp;quot;display:none&amp;quot;&amp;gt;
&amp;lt;$ArticleBodyMore$&amp;gt;&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;span class=&amp;quot;main-continues&amp;quot; id=&amp;quot;hide&amp;lt;$ArticleId$&amp;gt;&amp;quot; style=&amp;quot;display:none&amp;quot;&amp;gt;
&amp;lt;a class=&amp;quot;acontinues&amp;quot; href=&amp;quot;#&amp;lt;$ArticleId$&amp;gt;&amp;quot;
onclick=&amp;quot;hideMore(&amp;apos;&amp;lt;$ArticleId$&amp;gt;&amp;apos;);return true;&amp;quot;&amp;gt;
続きを隠す&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;

&amp;lt;/IfArticleBodyMore&amp;gt;&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;

</description>
    <pubDate>Sun, 19 Feb 2006 21:41:45 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/804</guid>
    <author>wataradi</author>
    <category domain="http://knowledge.livedoor.com/category/114002">livedoorブログ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1307</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1307</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Mon, 27 Mar 2006 06:14:51 +0900</knowledge:closed>
    </knowledge:feed>
</item>
</channel>
</rss>
