プラグインには背景の不透明度を設定する機能がないので、背景色のオプションをクリアしてこのコードを使う必要があります。
You need to use a CSS snippet instead of using the built in color setting. You can use the color picker tool here to create a color. Then copy and paste the RGBA value into the snippet samples below. When using the rgba color of your choice: #cff{ background: rgba(0,0,0,0.5); } the alpha channel (last number) is the transparency setting. Values for transparency can be from 0 = 100% transparent to 1 = 100% opaque. A 0.05 would give you a 50% transparent background.
そうしないと、プラグインの色設定があなたのカスタマイズを上書きしてしまいます。 そうしないと、プラグインの色設定があなたのカスタマイズを上書きしてしまいます:WordPress Dashboard - Facebook Feed - Customize - General (tabbed page) - Feed Background Colorをクリアし、変更を保存します。 その後、以下の設定を適用してください:
フィードの背景全体:.cff-wrapper{ background: rgba(54, 25, 25, 0.5); }
個々のテキスト投稿の背景:.cff-post-text{ background: rgba(54, 25, 25, 0.5); }
投稿フィードの日付の背景:.cff-date{ background: rgba(54, 25, 25, 0.5);}
投稿フィードの「Facebookで見る」リンクの背景:.cff-viewpost-facebook{ background: rgba(54, 25, 25, 0.5); }