<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									吹き出しの位置を下にしたい - Cocoonテーマに関する質問				            </title>
            <link>https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/</link>
            <description>Cocoon ディスカッション掲示板</description>
            <language>ja</language>
            <lastBuildDate>Sun, 07 Jun 2026 01:32:08 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: 吹き出しの位置を下にしたい</title>
                        <link>https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61678</link>
                        <pubDate>Sat, 14 May 2022 14:38:08 +0000</pubDate>
                        <description><![CDATA[@chu-ya さん
ありがとうございます！無事に理想の吹き出しにできました！お忙しい中細かい部分までご教授くださりありがとうございました]]></description>
                        <content:encoded><![CDATA[<p>@chu-ya さん</p>
<p>ありがとうございます！無事に理想の吹き出しにできました！お忙しい中細かい部分までご教授くださりありがとうございました</p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/cocoon-theme/">Cocoonテーマに関する質問</category>                        <dc:creator>rate2336</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61678</guid>
                    </item>
				                    <item>
                        <title>RE: 吹き出しの位置を下にしたい</title>
                        <link>https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61665</link>
                        <pubDate>Sat, 14 May 2022 10:18:06 +0000</pubDate>
                        <description><![CDATA[以下のCSSを追加する事で可能です。この時、吹き出しに付けるclassはbottomとします。
●補足大きい三角の色を#ccc(グレー)、小さい三角の色をピンク(#feeeed)として重ねる。大きい三角が少し見える為、それが外の枠(^)として見える。
/* 吹き出しとアイコンの横並び解除 */
.bottom.speech-wrap {
  display:block;...]]></description>
                        <content:encoded><![CDATA[<p>以下のCSSを追加する事で可能です。<br />この時、吹き出しに付けるclassは<span style="color: #ff0000">bottom</span>とします。</p>
<p><strong>●補足<br /></strong>大きい三角の色を#ccc(グレー)、小さい三角の色をピンク(#feeeed)として重ねる。<br />大きい三角が少し見える為、それが外の枠(^)として見える。</p>
<pre contenteditable="false">/* 吹き出しとアイコンの横並び解除 */
.bottom.speech-wrap {
  display:block;
}

/* 右の人を右寄せ */
.bottom.sbp-r * {
  margin-left:auto;
}

/* 吹き出し */
.bottom .speech-balloon {
  margin-top:12px;  /* 三角部分の余白 */
  max-width:100%;   /* 画面幅にする */
  border:2px solid;
}

.bottom.sbp-r .speech-balloon {
  margin-right:0;
}
.bottom.sbp-l .speech-balloon {
  margin-left:0;
}

/* 右の人の吹き出し三角の位置 */
.bottom.sbp-r .speech-balloon:before,
.bottom.sbp-r .speech-balloon:after {
  right: 36px;
}

/* 左の人の吹き出し三角の位置 */
.bottom.sbp-l .speech-balloon:before,
.bottom.sbp-l .speech-balloon:after {
  left: 36px;
}

/* 吹き出しの三角(大きい三角の上にに、小さい三角を重ね吹き出しを作る) */
/* 大きい三角 */
.bottom .speech-balloon:before {
  border: 12px solid transparent;
  border-bottom: 12px solid;
  top: -24px;
}

/* 小さい三角 */
.bottom .speech-balloon:after {
  border: 10px solid transparent;
  border-bottom: 10px solid;
  margin: 0 2px;
  top: -19px;
}

/* 名前の位置をアイコン横 */
.bottom .speech-person {
  position: relative;
}

.bottom .speech-name {
  display: block;
  position: absolute;
  top: 0;
  width: 150px; /* 名前の幅 */
}

.bottom.sbp-r .speech-name {
  right: 100%;
  text-align: right;
}

.bottom.sbp-l .speech-name {
  left: 100%;
  text-align: left;
}


/* 色指定 */
/* コメント欄 */
.bottom .speech-balloon {
  border:2px solid #ccc;  /* 枠色 */
  background-color:#feeeed; /* 背景色 */
}

/* 大きい三角 */
.bottom .speech-balloon:before {
  border-bottom-color:#ccc; /* 吹き出し枠色 */
}

/* 小さい三角 */
.bottom .speech-balloon:after {
  border-bottom-color:#feeeed; /* 吹き出し背景色 */
}</pre>
<div id="wpfa-29084" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="1.png" href="//wp-cocoon.com/wp-content/uploads/wpforo/default_attachments/1652523486-1.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> 1.png</a></div>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/cocoon-theme/">Cocoonテーマに関する質問</category>                        <dc:creator>大門未知子</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61665</guid>
                    </item>
				                    <item>
                        <title>RE: 吹き出しの位置を下にしたい</title>
                        <link>https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61660</link>
                        <pubDate>Sat, 14 May 2022 09:19:34 +0000</pubDate>
                        <description><![CDATA[取り急ぎ分かる範囲で回答します。rate2336さんのCSS有識度にもよります。
●要件定義

名前や肩書きなど、任意の文字をコメント以外に表示したい。
吹き出しをアイコン下に表示したい。

●名前や肩書きなどの任意の文字表示可能。Cocoonの吹き出し機能で、コメント以外に、名前の欄に任意の文字列を入力可能です。ここに、名前、肩書きを挿入可能となります。
●吹き...]]></description>
                        <content:encoded><![CDATA[<p>取り急ぎ分かる範囲で回答します。<br />rate2336さんのCSS有識度にもよります。</p>
<p><strong>●要件定義</strong></p>
<ul>
<li>名前や肩書きなど、任意の文字をコメント以外に表示したい。</li>
<li>吹き出しをアイコン下に表示したい。</li>
</ul>
<p><strong>●名前や肩書きなどの任意の文字表示</strong><br />可能。<br />Cocoonの吹き出し機能で、コメント以外に、<span style="color: #ff0000">名前の欄に任意の文字列を入力可能</span>です。<br />ここに、名前、肩書きを挿入可能となります。</p>
<p><strong>●吹き出し位置を下表示</strong><br />可能。<br /><span style="color: #ff0000">CSSに追記する事で可能</span>です。<br />エディタで吹き出しブロックを選択した際、で追加CSSクラスを指定できます。<br />ここで下のclassを指定する事で対応可能です。</p>
<p><strong>●条件</strong><br />エディタの設定で、噴出しの背景の色、ボーダーの色の指定は不可。<br />左右が対象のようです。<br />吹き出し左右の三角部分を対象としている為、今回の下吹き出しの三角の部分が表示がおかしくなります。<br />この為、あらかじめCSSで定義する事になります。</p>
<div id="wpfa-29082" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="2.png" href="//wp-cocoon.com/wp-content/uploads/wpforo/default_attachments/1652519974-2.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> 2.png</a></div>
<div id="wpfa-29083" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="1.png" href="//wp-cocoon.com/wp-content/uploads/wpforo/default_attachments/1652519997-1.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> 1.png</a></div>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/cocoon-theme/">Cocoonテーマに関する質問</category>                        <dc:creator>大門未知子</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61660</guid>
                    </item>
				                    <item>
                        <title>吹き出しの位置を下にしたい</title>
                        <link>https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61648</link>
                        <pubDate>Sat, 14 May 2022 01:29:54 +0000</pubDate>
                        <description><![CDATA[お世話になっております。
吹き出しについてなのですが、現在COCOONでは吹き出しの位置は左右どちらかしか設定できないと思いますがこの吹き出しの位置をアイコンの下に置くことは難しいでしょうか？
イメージは添付した画像のように、アイコンの横に名前や肩書きなどを挿入し、その下に吹き出しです。
 
CSSやプラグインなど何か方法がありましたらご教授願えますと幸いです。
&amp;n...]]></description>
                        <content:encoded><![CDATA[<p>お世話になっております。</p>
<p>吹き出しについてなのですが、現在COCOONでは吹き出しの位置は左右どちらかしか設定できないと思いますがこの吹き出しの位置をアイコンの下に置くことは難しいでしょうか？</p>
<p>イメージは添付した画像のように、アイコンの横に名前や肩書きなどを挿入し、その下に吹き出しです。</p>
<p> </p>
<p>CSSやプラグインなど何か方法がありましたらご教授願えますと幸いです。</p>
<div id="wpfa-29073" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//wp-cocoon.com/wp-content/uploads/wpforo/default_attachments/1652491852-Screenshot_20220514-1008102.png" target="_blank" title="Screenshot_20220514-1008102.png"><i class="fas fa-paperclip"></i>&nbsp;Screenshot_20220514-1008102.png</a></div>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/cocoon-theme/">Cocoonテーマに関する質問</category>                        <dc:creator>rate2336</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/cocoon-theme/%e5%90%b9%e3%81%8d%e5%87%ba%e3%81%97%e3%81%ae%e4%bd%8d%e7%bd%ae%e3%82%92%e4%b8%8b%e3%81%ab%e3%81%97%e3%81%9f%e3%81%84/#post-61648</guid>
                    </item>
							        </channel>
        </rss>
		