留言板

BUILD THEME

thumbnail
Akash Jaisawal,修改在12 年前。

BUILD THEME

Regular Member 帖子: 141 加入日期: 12-3-3 最近的帖子
i build a simple blank theme what should i do to make changes in background colour and attachment of pic over there?? emoticon
thumbnail
David H Nebinger,修改在12 年前。

RE: BUILD THEME

Liferay Legend 帖子: 14919 加入日期: 06-9-2 最近的帖子
This is the AUI forum, your question probably belongs in the dev forum instead.

Background color and pic would both be defined within the theme's CSS.
thumbnail
Rojalin Patri,修改在12 年前。

RE: BUILD THEME

Expert 帖子: 287 加入日期: 11-3-22 最近的帖子
Hi Akash,
Add a file named custom.css inside docroot/_diffs/css and the following portion of custom.css handles the background part.you should configure according to your requirement.
body {
/*background-color: #0066CC;*/
background: url("../images/xxx.png") no-repeat;

/*color: #FFFFFF;*/

font-family: Verdana,Helvetica,sans-serif;
font-size: 11px;
}
once you add the your own css in the file,it would override the docroot/css/custom.css.
Hope this helps...
Regards
Rojalin
thumbnail
Akash Jaisawal,修改在12 年前。

RE: BUILD THEME

Regular Member 帖子: 141 加入日期: 12-3-3 最近的帖子
Thank You So much ROjalin!!! emoticon