基本的なスタイルの チュートリアル
チュートリアル: ヘッダーの背景色の変更
ヘッダーとは、既定の Confluence ページの最上部にあるメニュー領域を指し、Breadcrumb リンク、参照メニュー、ユーザーメニューおよびクイック検索ボックスがあります。次の例では、カスタムグラフィックを組み込むためにヘッダーの背景色を変更します。
- カスタムグラフィックを作成します。この例では、 1046 x 61 ピクセルのカスタムヘッダーグラフィックを作成しました。
- Upload the custom graphic to a page in the space that you are customising.
- 新しいグラフィックをアップロードしたページのページ ID をメモします。(この例では、ページ ID は '658833839' です。
ヘッダー用のカスタム CSS を作成します。以下の例では、新しいグラフィック ('header.png') を同じスペースの特定のページ (ページ ID '658833839' で表示) からロードします。
#header .aui-header { background-image:url('../download/attachments/658833839/header.png'); background-repeat: no-repeat; }
- スペース管理者としてログインします。
- スペース管理ページを開きます。
- スタイルシートをクリックします。
- 編集をクリックしてテキストフィールドのコードを変更します。
- カスタムCSSを、テキストフィールドに貼り付けます。
- 保存をクリックしてからページを再読み込みします (Shift + 再読み込みキーを押す必要がある場合もあります)。ヘッダーの背景色が変更されます。
- カスタムヘッダーは、スペース内のすべてのコンテンツページで表示されます。変更を戻すには、単に 'Stylesheet' ページからカスタムコードを削除して、保存をクリックします。
CSS 編集のヒント
スペーススタイルシートから着手する
A space stylesheet is a good starting point for CSS customisation, as it already includes all of the elements that can be changed. When you work on the space stylesheet it styles all content pages in the space. Build and test it at space-level, before considering applying the new stylesheet to your entire site. Once you are satisfied with your space design, test it thoroughly until you are confident that it has no problems. Then, you can look into advanced customisation of the Confluence CSS such as adjusting the Search page, the Dashboard and other integral pages.
適切なツールを使用する
Confluence CSS はかなり洗練されているため、 Web 開発アプリケーションを通じて、ユーザーはページのスタイルがどのように作成されたかを理解することになります。特に、作業を開始するページの既存のソースを表示する必要があります。これを実行するためのツールをまだ持っていない場合、次のフリーアプリケーションなどのツールが役立ちます。
1. Firebug
Firebug は、Firefox Web ブラウザーのプラグインで、ページの各要素のスタイルを調べることができます。現在適用されているスタイル (ヘッダーのみに適用されているスタイルなど) を知るには非常に役立ちます。
2. Web Developer
Firefox の Web Developer プラグインを使用すると、CSS インラインを編集して新しいページデザインを作成できます。
3. CSS Edit
CSS Edit は、Macintosh 用の独立型の CSS エディターで、指定したページからすべての既存のスタイルを抽出して上書きすることができます。
最初に単純な要素を編集する
Begin by editing simple elements and checking that they work. By making changes, then checking that each one worked, you can easily isolate any CSS code that is causing problems. Be aware that some page elements are more suited to customisation than others. For example, adding a gradient to the toolbar is less likely to 'break' the page than changing the page width. Editing reasonably static elements such as background graphics will render more predictably than designs which attempt to completely change the user interface or the Javascript-powered drop-down menus (which we don't recommend editing).