項目 widget-area-1 尚未註冊或是沒有一個 view.php 檔案.
項目 widget-area-1 尚未註冊或是沒有一個 view.php 檔案.
項目 search-input 尚未註冊或是沒有一個 view.php 檔案.

【WordPress #3】wordpress 調整文章內表格顏色, 格式 的方法 (markdown 也適用) modify table color, format (內附範例 css 程式碼) sample code

前言

這篇是因為我在調整我自己網站時,
發現表格怎麼樣用都很醜,
後來認真的研究該怎麼辦的研究成果。

  • 原來的樣子

有沒有看到表格都不見了!!!

範例程式碼

引用自: https://www.techiestuffs.com/styling-tables-using-css-in-wordpress-theme/

table {
background: #fff;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #ddd;
margin:auto;
  }

 table thead, table tfoot { background: #f5f5f5; }
 table thead tr th,
 table tfoot tr th,
 table tbody tr td,
 table tr td,
 table tfoot tr td { font-size: 12px; line-height: 18px; text-align: left; }
 table thead tr th,
 table tfoot tr td { padding: 8px 10px 9px; font-size: 14px; font-weight: bold; color: #222; }
 table thead tr th:first-child, table tfoot tr td:first-child { border-left: none; }
 table thead tr th:last-child, table tfoot tr td:last-child { border-right: none; }

      table tbody tr.even,
      table tbody tr.alt { background: #f9f9f9; }
      table tbody tr:nth-child(even) { background: #f9f9f9; }
      table tbody tr td { color: #333; padding: 9px 10px; vertical-align: top; border: none; }

將上面這段程式碼加入在自己的外觀設定的 css 裡面

在外觀的這邊

直接貼上後發布

結果

  • 直接給大家看吧XD (我有自己再稍微調整一下)
指令功能簡述補充說明
cd切換資料夾記法:change directory
ls查看資料夾內檔案(只有檔名)
ll 或 ls -l查看資料夾內檔案(完整資訊)
pwd查看目前路徑

想學習怎麼改,可以參考: https://www.w3schools.com/css/css_table.asp

至於這段內容在哪XD,在我的這篇文當中:

【Linux 基礎指令 #0】linux/ubuntu/mac 基礎終端機 (terminal) 指令 & 基礎知識總整理,初學者/新手 必須知道的基礎指令 & 基礎知識大全(持續更新)

Reference

Styling Tables using CSS in WordPress Theme


https://www.w3schools.com/css/css_table.asp
https://www.w3schools.com/css/tryit.asp?filename=trycss_table_fancy

⭐WordPress 相關文章整理⭐:
1.【WordPress】建立/架一個網站大概要花多少錢? 與個人建立網站心態分享 (以我的 wordpress 網站為例,持續更新) How Much Does It Cost to Build a WordPress Website?
2.【WordPress】wordpress 初學者尋找特定選單的編輯位置
3.【WordPress】wordpress 初學者建立文章縮圖的方法
4.【WordPress】wordpress 調整文章內表格顏色, 格式 的方法 (markdown 也適用) modify table color, format (內附範例 css 程式碼) sample code
5.【WordPress】Bug & 問題解決: wordpress 引用文章/文章連結 時 縮圖壞掉/破圖/沒有顯示縮圖 ,分享文章到 facebook 時 縮圖壞掉/破圖/沒有顯示縮圖 (附例圖)
6.