You are not logged in.

Controlpanel

At the moment there aren´t any members active..

Statistic

  • Members: 13109
  • Threads: 18183
  • Postings: 119668 (ø 46.08/day)
  • Greetings to our newest member: misssusan

w2d Premium-Support

Die Experten für web to date / shop to date

Facebook

bernd08a

Beginner

  • "bernd08a" started this thread

Posts: 1

web/shop to date Version: w2d 7

  • Send private message

1

Monday, February 6th 2012, 10:23pm

Suche: Hilfe bei Design Aurora (Kontextspalte)

Hallo Leute, ich versuche verzweifelt im Design Aurora die Kontextspalte zu entfernen. Klappt aber leider nicht. Ebenso versuche ich die Farbe der Navigationsleiste und der Fußleiste zu ändern. Auch das klappt leider nicht so wie ich mir das gedacht habe. Kann mir da jemand helfen? Ich habe WebToDate 7 in Gebrauch. Ich bin für jeden Hinweis und / oder auch Hilfe dankbar. Gruß Bernd

cojo_1008

Super-Moderator

  • "cojo_1008" is female

Posts: 3,607

Location: Berlin-Kaulsdorf

Occupation: Freiberuflerin

web/shop to date Version: shop to date 5 - shop to date 8

  • Send private message

2

Wednesday, February 8th 2012, 8:51am

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="&paragraph.teaser.colcount=1">
<cc:set obj="mywidth" value="630px">
</cc:if>

<cc:if cond="&paragraph.teaser.colcount=2">
<cc:set obj="mywidth" value="305px">
</cc:if>

<cc:if cond="&paragraph.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="&paragraph.teaser.colcount=1">
<cc:set obj="mywidth" value="&plugin.width">
</cc:if>

<cc:if cond="&paragraph.teaser.colcount=2">
<cc:set obj="mywidth" value="(&plugin.width-22) div 2">
</cc:if>

<cc:if cond="&paragraph.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="&paragraph.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="&paragraph.picture.uid" suffix="_650" width="650" height="600" obj="bigpic" bordercolor="#dddddd">
<cc:else>
<cc:picture uid="&paragraph.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>
Gruß Conny