WordPressの設定ついて

スポンサーリンク

こちらの記事は最近、歳のせいか物忘れが激しくなったオーナー(2代目)がこちらの記事は最近、歳のせいか物忘れが激しくなったオーナー(2代目)が参考となるページをメモしているページ(所謂、weblog)です(笑)。
いや~・・・歳は取りたくないなぁ。。。^_^;

WordPressについて

全般

https://techacademy.jp/magazine/webdesign/wordpress

wordpressでwebの作り方

http://webdesignrecipes.com/wordpress-corporate-website/

カテゴリーの並べ替え

https://wp-exp.com/blog/category-order/

AddQuicktagで文字装飾がクリック1つ

https://yossense.com/add-quick-tag/

無料テンプレート

https://lblevery.com/sfn/download/

その他wordpressに関するもの

https://lblevery.com/sfn/

カレンダー設定について

https://wp-simplicity.com/custum-calendar-css/

style.css に以下を追加

月曜スタートのカレンダーの場合

/*****************************
*カレンダーに枠を付ける
*****************************/
#wp-calendar {
    border-collapse: collapse;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #999;
    border-right-color: #999;
    width: 250px;
    margin-left: 35px;
}
#wp-calendar thead tr th {
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #999;
    border-left-color: #999;
}

/*土曜日のヘッダーセル*/
#wp-calendar thead tr th:nth-child(6){
  background-color: #C0DDF9;
}

/*日曜日のヘッダーセル*/
#wp-calendar thead tr th:nth-child(7){
  background-color: #F5D0D3;
}

#wp-calendar td {
    text-align: center;
    padding: 0px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #999;
    border-left-color: #999;

}
#wp-calendar caption {
    font-weight: bold;
    text-align: left;
}
#wp-calendar tbody tr #today {
    background-color: #CCC;
}

日曜スタートのカレンダーの場合は

/*****************************
*カレンダーに枠を付ける
*****************************/
#wp-calendar {
    border-collapse: collapse;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #999;
    border-right-color: #999;
    width: 250px;
    margin-left: 35px;
}
#wp-calendar thead tr th {
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #999;
    border-left-color: #999;
}

/*土曜日のヘッダーセル*/
#wp-calendar thead tr th:nth-child(7){
  background-color: #C0DDF9;
}

/*日曜日のヘッダーセル*/
#wp-calendar thead tr th:nth-child(1){
  background-color: #F5D0D3;
}

#wp-calendar td {
    text-align: center;
    padding: 0px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #999;
    border-left-color: #999;

}
#wp-calendar caption {
    font-weight: bold;
    text-align: left;
}
#wp-calendar tbody tr #today {
    background-color: #CCC;
}

【WordPress】トップページを固定ページにしつつ最新記事も表示する方法

https://muryoblog.cinemarev.net/entry/toppage-customize.html

スポンサーリンク

シェアする

  • このエントリーをはてなブックマークに追加

フォローする