Demo

討論

保持飢餓,保持愚笨 (Stay hungry, stay foolish)。 史蒂夫·賈伯斯

公告

本網站已取消討論區的討論方式,如果您有問題請至LINE群行動條碼圖片網址,或Facebook社團

請教文章列表和搜尋列表改大要從那裡下手?

  • 許麟麟
  • 許麟麟 的個人頭像 Topic Author
  • 訪客
  • 訪客
2011-07-09 19:58 #20328 來自 許麟麟
許麟麟 created the topic: 請教文章列表和搜尋列表改大要從那裡下手?
文章列表如何更改大小唷? 請教各位大大的指導,小弟用了半年還搞不懂要怎麼修改.
搜尋也有點大? 能否變小嗎? 請教各位指導一下^^~
附件:

Please 登入 to join the conversation.

  • simonpeter
  • simonpeter 的個人頭像
  • 訪客
  • 訪客
2011-07-13 18:49 #20349 來自 simonpeter
simonpeter replied the topic: 請教文章列表和搜尋列表改大要從那裡下手?
嘗試找出以下的 CSS樣式改一改:

table.contentpane {
width:100%;
}

文章列表 (Category List Layout) 套用了一下的 CSS 樣式:

table.contentpane { }
.sectiontableheader { }
.sectiontableheader a { }
tr.sectiontableentry1 td { }
tr.sectiontableentry2 td { }
tr.sectiontableentry1:hover td,
tr.sectiontableentry2:hover td { }

至於搜尋, 可以使用以下的樣式看看:

.inputbox {
width: 100px;
}

不妨學習使用 Firefox 的 firebug, 那你就可以輕易的找出套用在 joomla 的各種CSS樣式。

https://addons.mozilla.org/en-US/firefox/addon/firebug/

Please 登入 to join the conversation.

  • 許麟麟
  • 許麟麟 的個人頭像 Topic Author
  • 訪客
  • 訪客
2011-07-17 11:23 #20368 來自 許麟麟
許麟麟 replied the topic: 請教文章列表和搜尋列表改大要從那裡下手?

simonpeter 寫了道:: 嘗試找出以下的 CSS樣式改一改:

table.contentpane {
width:100%;
}

文章列表 (Category List Layout) 套用了一下的 CSS 樣式:

table.contentpane { }
.sectiontableheader { }
.sectiontableheader a { }
tr.sectiontableentry1 td { }
tr.sectiontableentry2 td { }
tr.sectiontableentry1:hover td,
tr.sectiontableentry2:hover td { }


至於搜尋, 可以使用以下的樣式看看:

.inputbox {
width: 100px;
}

不妨學習使用 Firefox 的 firebug, 那你就可以輕易的找出套用在 joomla 的各種CSS樣式。

https://addons.mozilla.org/en-US/firefox/addon/firebug/

謝謝您的指點^^

Please 登入 to join the conversation.

  • 許麟麟
  • 許麟麟 的個人頭像 Topic Author
  • 訪客
  • 訪客
2011-07-25 01:53 #20415 來自 許麟麟
許麟麟 replied the topic: 請教文章列表和搜尋列表改大要從那裡下手?
至於搜尋, 可以使用以下的樣式看看:

.inputbox {
width: 100px;
}

似乎改不動,不管改數字多少都改不小,我改的template.css 裡面沒這項目><"
請大大指教一下,感謝大大,搞不懂為什麼會這樣^^

Please 登入 to join the conversation.

  • 許麟麟
  • 許麟麟 的個人頭像 Topic Author
  • 訪客
  • 訪客
2011-08-06 00:27 #20542 來自 許麟麟
許麟麟 replied the topic: 請教文章列表和搜尋列表改大要從那裡下手?

許麟麟 寫了道:: 至於搜尋, 可以使用以下的樣式看看:

.inputbox {
width: 100px;
}

似乎改不動,不管改數字多少都改不小,我改的template.css 裡面沒這項目><"
請大大指教一下,感謝大大,搞不懂為什麼會這樣^^

已修改完畢,\謝謝大加^^

PX 要改% 才改得動

.inputbox {
width: 100%;
}

Please 登入 to join the conversation.