文章目录 「隐藏」
为了增加文章内容的层次感,增强用户体验,我们可以把文章正文标题、二级标题、三级标题增加不同的底色这样的wordpress美化效果以示区分。
正文标题增加底色
在Style.css查找以下内容
- /** 正文 **/
- .entry-header h1 {
- position: relative;
- font-size: 20px;
- font-size: 2.0rem;
- line-height: 30px;
- text-align: center;
- margin: 35px 0 0 0;
- padding: 5px 0;
- }
替换为
- .entry-header h1 {
- position: relative;
- font-size: 20px;
- font-size: 1.8rem;
- line-height: 30px;
- text-align: center;
- margin: 35px -20px 0 -20px;
- padding: 5px 20px;
- height: auto;
- color: #fff;
- text-transform: inherit;
- background-color: #1ba1e2;
- border-bottom: 1px solid #ddd;
- }
二级标题、三级标题增加底色方法
将以下代码
- /** 排版样式 **/
- .single-content h2 {
- font-size: 17px;
- font-size: 1.7rem;
- line-height: 190%;
- margin: 10px -21px;
- padding: 0 44px;
- border-left: 5px solid #e40000;
- }
- .single-content h3 {
- font-size: 16px;
- font-size: 1.6rem;
- line-height: 190%;
- margin: 2px -21px 10px -21px;
- padding: 0 44px;
- border-left: 5px solid #3690cf;
- }
替换为
- .single-content h2 {
- font-size: 17px;
- font-size: 1.7rem;
- line-height: 190%;
- margin: 10px -20px;
- padding: 0 44px;
- border-left: 5px solid #e40000;
- background-color: #ebebeb;
- border-bottom: 1px solid #e40000;
- }
- .single-content h3 {
- font-size: 16px;
- font-size: 1.6rem;
- line-height: 190%;
- margin: 2px -20px 10px -20px;
- padding: 0 44px;
- border-left: 5px solid #3690cf;
- background-color: #ebebeb;
- border-bottom: 1px solid #3690cf;
- }
增加底色可以很好的增强文章内容的层次感,增强了用户体验。