Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /home/users/1/macerate/web/main/denmi_net/wp/wp-content/plugins/social-networks-auto-poster-facebook-twitter-g/inc/nxs_functions_engine.php on line 266

Warning: Cannot modify header information - headers already sent by (output started at /home/users/1/macerate/web/main/denmi_net/wp/wp-content/plugins/social-networks-auto-poster-facebook-twitter-g/inc/nxs_functions_engine.php:266) in /home/users/1/macerate/web/main/denmi_net/wp/wp-content/plugins/wp-super-cache/wp-cache-phase2.php on line 1592
CSSで、テキストにドロップシャドウを付ける | DENMI.NET_WP
Skip to content

CSSで、テキストにドロップシャドウを付ける

CSSで、テキストにドロップシャドウを付ける

text-shadow

text-shadow: 5px 5px 5px gray;

てな感じで、簡単に付けられるが、
ブラウザによっては見えませんので、ご注意を。

参考・・・WordPress備忘帳的

WordPressのTheme、Grapheneの場合
外観→テーマの編集→スタイルシート (style.css)

「.header_title {」 で検索。

Default
—–
.header_title {
font: bold 28px “Trebuchet MS”;
position: relative;
top: 110px;
}
—–

After
—–
.header_title {
text-shadow: 5px 5px 5px gray;
font: bold 28px “メイリオ”,Meiryo,”MSPゴシック”,”ヒラギノ角ゴ Pro W3″,”Hiragino Kaku GothicPro”,Osaka,sans-serif;
position: relative;
left: 38px;
top: 80px;
width: 852px;
—–

てな感じ。

以前にも関連記事書きましたが、改めて備忘帳。。。