1 頁 (共 1 頁)

文字顏色更改

發表於 : 2009-09-01 00:00
ilghtnt
假設我想要修改像上面"討論區首頁"和"會員控制台"那部分的字的顏色

也就是頁首和頁尾上面藍色方框內部的字的顏色。

請問我該從colours那一串去改呢?




安裝風格:prosilver
●架設主機作業系統:Windows XP sp3
●快速架站程式:appserv-win32-2.4.4a
●免費空間連結:使用localhost
●您的上網方式:ADSL
●您安裝的程式:Apache + php + MySql
●您的 phpBB3 版本:phpBB 3.0.3

Re: 文字顏色更改

發表於 : 2009-09-01 21:42
心靈捕手
ilghtnt 寫:假設我想要修改像上面"討論區首頁"和"會員控制台"那部分的字的顏色

也就是頁首和頁尾上面藍色方框內部的字的顏色。

請問我該從colours那一串去改呢?




安裝風格:prosilver
●架設主機作業系統:Windows XP sp3
●快速架站程式:appserv-win32-2.4.4a
●免費空間連結:使用localhost
●您的上網方式:ADSL
●您安裝的程式:Apache + php + MySql
●您的 phpBB3 版本:phpBB 3.0.3

就是這一串.

代碼: 選擇全部

a:link	{ color: #105289; }
a:visited	{ color: #105289; }
a:hover	{ color: #D31141; }
a:active	{ color: #368AD2; }

Re: 文字顏色更改

發表於 : 2009-09-02 09:26
ilghtnt
謝謝您的提醒,不過我試著改,他往往一改就會動到許多的文字

如果要一個一個改顏色的話,是從下面這些程式碼著手嗎?

代碼: 選擇全部

/* Links on gradient backgrounds */
#search-box a:link, .navbg a:link, .forumbg .header a:link, .forabg .header a:link, th a:link {
	color: #FFFFFF;
}

#search-box a:visited, .navbg a:visited, .forumbg .header a:visited, .forabg .header a:visited, th a:visited {
	color: #FFFFFF;
}

#search-box a:hover, .navbg a:hover, .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
	color: #A8D8FF;
}

#search-box a:active, .navbg a:active, .forumbg .header a:active, .forabg .header a:active, th a:active {
	color: #C8E6FF;
}

Re: 文字顏色更改

發表於 : 2009-09-03 21:39
心靈捕手
ilghtnt 寫:謝謝您的提醒,不過我試著改,他往往一改就會動到許多的文字

如果要一個一個改顏色的話,是從下面這些程式碼著手嗎?

代碼: 選擇全部

/* Links on gradient backgrounds */
#search-box a:link, .navbg a:link, .forumbg .header a:link, .forabg .header a:link, th a:link {
	color: #FFFFFF;
}

#search-box a:visited, .navbg a:visited, .forumbg .header a:visited, .forabg .header a:visited, th a:visited {
	color: #FFFFFF;
}

#search-box a:hover, .navbg a:hover, .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
	color: #A8D8FF;
}

#search-box a:active, .navbg a:active, .forumbg .header a:active, .forabg .header a:active, th a:active {
	color: #C8E6FF;
}
因為它是定義 "整個論壇" 的連結之顏色變化, 所以會牽一髮而動全身.
引言內所提到的語法, 只是特別針對 "搜尋盒" 定義其連結之顏色變化.