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
Grapheneでの2列・3列の時に現れる、Sidebarの枠の消し方。 | DENMI.NET_WP
Skip to content

Grapheneでの2列・3列の時に現れる、Sidebarの枠の消し方。

Graphene: スタイルシート

2列・3列の時に現れる、Sidebarの枠の消し方。

外観→Grapheneのオプション→Graphene: スタイルシート (style.css)

このファイルの結構下の方に下記の記述がある。

.sidebar div.sidebar-wrap {
background: #fff;
border: 5px solid #ccc;
-moz-box-shadow: 0 0 5px #BBB;
-webkit-box-shadow: 0 0 5px #BBB;
box-shadow: 0 0 5px #BBB;
margin-bottom: 16px;
padding: 10px 12px;
position: relative;
}

上記の記述を下記へ変更

.sidebar div.sidebar-wrap {
background: #fff;
border: 0px solid #ccc;
-moz-box-shadow: 0 0 5px #BBB;
-webkit-box-shadow: 0 0 5px #BBB;
box-shadow: 0 0 0px #BBB;
margin-bottom: 16px;
padding: 10px 12px;
position: relative;
}

以上で、枠は消える。