Wie man die Farbe der Navigationsleiste äbdert findest du
hier
Die Farbe der Fußleiste kannst du in der style_design.css bei
|
Cascading style sheet
|
1
|
#footer
|
ändern. Dort einfach bei
|
Cascading style sheet
|
1
|
background-color: #dddddd;
|
den Farbcode verändern.
Kontextspalte abschalten:
navigation.ccml
Zwischen
</head>
|
Source code
|
1
|
|
und
|
Source code
|
1
|
<body>
|
folgende Zeile einsetzen
|
Source code
|
1
|
<cc:plugin name="width" value="920">
|
Die Zeile
|
Source code
|
1
|
<div id="content">
|
ändern in
|
Source code
|
1
|
<div id="content" <cc:if cond="&sidebar.count lt 1">class="wide"</cc:if>>
|
Vor die Zeile
|
Source code
|
1
|
<div id="sidebar">
|
die Zeile
|
Source code
|
1
|
<cc:if cond="&sidebar.count gt 0">
|
und nach der Zeile
|
Source code
|
1
|
<div id="sidebar">
|
die Zeile
|
Source code
|
1
|
<cc:plugin name="width" value="650">
|
einsetzen.
Vor die Zeile
|
Source code
|
1
|
<div style="clear: both;"></div>
|
setzt du noch das schließende
|
Source code
|
1
|
</cc:if>
|
ein.
style_design.css
Die Zeile einsetzen
|
Cascading style sheet
|
1
|
#content.wide {width:920px; padding: 20px;}
|
paragraph_teaser.ccml
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
|
<cc:if cond="¶graph.teaser.colcount=1">
<cc:set obj="mywidth" value="630px">
</cc:if>
<cc:if cond="¶graph.teaser.colcount=2">
<cc:set obj="mywidth" value="305px">
</cc:if>
<cc:if cond="¶graph.teaser.colcount=3">
<cc:set obj="mywidth" value="196px">
</cc:if>
|
ersetzen mit
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
|
<cc:if cond="¶graph.teaser.colcount=1">
<cc:set obj="mywidth" value="&plugin.width">
</cc:if>
<cc:if cond="¶graph.teaser.colcount=2">
<cc:set obj="mywidth" value="(&plugin.width-22) div 2">
</cc:if>
<cc:if cond="¶graph.teaser.colcount=3">
<cc:set obj="mywidth" value="(&plugin.width-43) div 3">
</cc:if>
|
Die Zeile
|
Source code
|
1
|
<div class="teaserelement" style="width: <cc:print value="&mywidth">;">
|
ändern in
|
Source code
|
1
|
<div class="teaserelement" style="width: <cc:print value="&mywidth">px;">
|
style_content.css
|
Cascading style sheet
|
1
2
3
4
5
|
div.teaserelement {
float: left;
padding: 0px 20px 0px 0px;
margin: 0px;
}
|
ändern in
|
Cascading style sheet
|
1
2
3
4
5
|
div.teaserelement {
float: left;
padding: 0px 10px 0px 0px;
margin: 0px;
}
|
paragraph_picture.ccml
die Zeile
|
Source code
|
1
|
<cc:picture uid="¶graph.picture.uid" suffix="_650" width="650" height="600" obj="bigpic" bordercolor="#dddddd">
|
ersetzen durch
|
Source code
|
1
2
3
4
5
|
<cc:if cond="&sidebar.count gt 0">
<cc:picture uid="¶graph.picture.uid" suffix="_650" width="650" height="600" obj="bigpic" bordercolor="#dddddd">
<cc:else>
<cc:picture uid="¶graph.picture.uid" suffix="_650" width="920" obj="bigpic" bordercolor="#dddddd">
</cc:if>
|
paragraph_table.ccml
Die Zeile
|
Source code
|
1
|
<cc:picture uid="&mycol.picture" obj="tablepic" width="540 * &mycol.width / 100 - 9" suffix="'table'+&mycol.width">
|
ersetzen durch
|
Source code
|
1
2
3
4
5
|
<cc:if cond="&sidebar.count gt 0">
<cc:picture uid="&mycol.picture" obj="tablepic" width="540 * &mycol.width / 100 - 9" suffix="'table'+&mycol.width">
<cc:else>
<cc:picture uid="&mycol.picture" obj="tablepic" width="815 * &mycol.width / 100 - 9" suffix="'table'+&mycol.width">
</cc:if>
|