BusinessPress カスタマイズ

テーマ(BusinessPress)のカスタマイズを行います。
BusinessPressの公式サイト
BusinessPressテーママニュアル
BusinessPressブログ見本

BusinessPress(ビジネスプレス)のサイト事例集

BusinessPressカスタマイズ①
 ヘッダー部分の幅や色の変更や透明化など
BusinessPressの使い方とカスタマイズ

カスタマイズ例 フッターにメニュー設置
[外観]-[メニュー]
編集するメニューを選択: footer(フッターメニュー)を選択
mainナビゲーションと同様にメニュー項目を設定
メニューの位置 ☑フッターメニュー
[メニューを保存]
カスタマイズ例 css
/*行間*/
p,body {line-height:1.5em;} 

/*見出し段落間を狭く*/
.entry-content h2,.entry-content h3 {margin-bottom:.5em; margin-top:0;}
aside.widget{margin-bottom:.5em;}
aside.widget h2,aside.widget h3 {margin-bottom:0em; margin-top:1em;}
.widget_block {margin:0!important;}

/*最近の投稿-アイキャッチ画像-表示の不都合解消*/
.wp-block-latest-posts {border-top:0;}
.wp-block-latest-posts li {border-bottom:0;}


/*ヘッダー部分の高さをスリム*/
.main-header{
  padding-top:5px;
  padding-bottom:5px;
  background-color:rgba(255,255,255,.9);
}
.main-navigation a, .site-title a{color:darkgreen !important;}
.site-title a{font-size:70%;}
body.home .main-header-original{
  top:0;
  left:0;
  position:absolute;
  z-index:1;
  width: 100%;
}

/*フッタークレジットを消す*/
.site-credit {display:none !important;}