WordPress版面下版權修改 II


 

想要拿掉一些WordPress.com版面常有的版型版權宣告, 各個版型不太一樣, 此例以Purpose為例。雖然官方有說不允許拿掉版權的條文規定, 但技術上是可以拿掉的

Attribution. Automattic reserves the right to display attribution links such as ‘Blog at WordPress.com,’ theme author, and font attribution in your blog footer or toolbar. Footer credits and the WordPress.com toolbar may not be altered or removed regardless of upgrades purchased.

1.原先的版型左下方有以下的版權宣告1

 

2.首先打開WordPress的控制台–>外觀–>自訂2

 

3.打開CSS設定, VIP是可以自行設計CSS的。

3

4.自行加上這段CSS設定

/*拿掉頁尾版權*/
.footer-content .align-left{
display: none;
}

補充: 針對 Jian Yue 的發問, 以 http://jianyuetw.com/為例, 則自行加上此段CSS設定

/*拿掉頁尾 WordPress 及版型版權, 並保留自訂版權宣告*/

#site-info a {
display: none;
}

.site-info .sep {
color: rgba(255, 255, 255, 1);
}

.site-info::before {
content: “Copyright © 2016 Jian Yue – All Rights Reserved “;
}

未加前:

4

 

加了之後

5

補充: 針對 Jian Yue 的發問>, 以 http://jianyuetw.com/為例, 結果如下

6

5.完工, 可參考結果網站 http://5k8k.photos/

6.附記

/*
Welcome to Custom CSS!

To learn how this works, see http://wp.me/PEmnE-Bt
*/
/*media all*/
.page-banner.feature-img {
width: 100%;
min-height: 240px;
max-height: 5120px;
position: relative;
line-height: 0;
margin: 0;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/*media all*/
.headline {
font-size: 1.4em;
font-weight: 400;
line-height: 1.2;
letter-spacing: -1px;
margin: 0px;
padding: 0px 0px 12px 0px;
}
/*media all 780px  75%–>95% */
.full.postarea {
max-width: 95%;
margin: 0px auto 0px;
padding: 64px 0px;
}
/*改版面寬度 1180px*/
.content {
max-width: 1600px;
margin: 0px auto 0px;
padding: 0px 96px;
position: relative;
}
/*media all*/
.container form input[type=’url’],
.container form input[type=’tel’],
.container form input[type=’email’],
.container form input[type=’text’],
.container form input[type=’password’],
.container form input[type=’number’]{
width: 96%;
margin-bottom: 2px;
}
/*media all*/
.container form textarea {
height: 120px;
width: 96% !important;
}
.container form select {
width: 100% !important;
}

.container form input[type="submit"] {
background-color: #2E7CB6;
background-color: #2E7CB6;
color: white;
font-weight: 600;
text-transform: uppercase;
font-family: “Source Sans Pro";
-webkit-border-radius: 3px;
border: none;
padding: 8px 35px;
clear: both;
display: block;
font-size: 13px;
margin-right: 8px;
cursor: pointer;
}

/*You can hide the ‘Leave a comment’ button by adding the following CSS to the Custom Design or Custom CSS add-on:
*/
.post-meta .align-left p {
display: none;
}

#header .site-title a {
font-weight: 800;
}

.header-large#header .site-title a, .header-large#header .menu a:hover, .header-large#header .menu-toggle:hover {
color:#ffffff;
}

/*
#navigation {
margin-right: 120px;
}*/
/*社群選單設定*/
.social-icons li a {
display: block;
background: #3b5998;
color: #fff;
text-align: center;
text-decoration: none;
line-height: 32px;
min-width: 32px;
margin: 2px;
padding: 0px;
border-radius: 16px;
}
/*拿掉頁尾版權*/
.footer-content .align-left{
display: none;
}

/*拿掉邊框*/
table td {
padding: 4px 8px;
margin: 0px;
border: 1px solid #f9f9f9;
background: #f9f9f9;
}

/*拿掉下方版權邊框background: #eeeeee;*/
.wp-caption {
background: #ffffff;
max-width: 100%;
text-align: center;
margin-top: 12px;
margin-bottom: 12px;
padding: 8px 6px;
border-radius: 3px;
}

/*media all*/
.article {
background: #f9f9f9;
display: block;
}