Cool Master
Fleet Admiral
- Registriert
- Dez. 2005
- Beiträge
- 40.033
Moin also ich soll eine Webseite umsetzen an sich kein problem. Allerdings will die Site nicht so wie ich will 
Also im Anhang seht ihr wie es aussehen soll und wie es aussieht. Ich steh gerade echt auf dem Schlauch wie ich das am besten umsetze evtl. habt ihr da eine bessere Idee als ich.
Hier mal noch der HTML und CSS Code:
Die "Placeholder" Tags sind für django-cms womit das ganze mit Inhalt befüllt wird. WIe kann ich das am besten umsetzen bzw. wie macht ihr sowas? Wäre auch nicht abgeneigt wenn ihr mit ein wenig code um euch werft
CSS3 ist auch erlaubt sollte es dadurch leichter gehen.
Grüße
Also im Anhang seht ihr wie es aussehen soll und wie es aussieht. Ich steh gerade echt auf dem Schlauch wie ich das am besten umsetze evtl. habt ihr da eine bessere Idee als ich.
Hier mal noch der HTML und CSS Code:
Code:
<div id="News">{% placeholder "News" %}
<div id="News_bg">WAS HAT SICH GETAN?</div>
</div>
<div id="Messe">{% placeholder "Messe" %}
<div id="Messe_bg">WANN IST WAS LOS?
</div>
</div>
<div id="Jobs">{% placeholder "Jobs" %}
<div id="Jobs_bg">WO KANN ICH ARBEITEN?
</div>
</div>
<div id="Weiterbildung">{% placeholder "Weiterbildung" %}
<div id="Weiterbildung_bg">WIE BILDE ICH MICH WEITER?</div>
Code:
#News{ /* 1. Container Rechts oben */
float: right;
width: 300px;
height: 165px;
background: #white ;
margin-top: -325px;
margin-right: 45px;
position:absolute;
left: 920px;
}
#News_bg{ /* 1. Rechts Hintergrund */
float: right;
background: #8b8c8e;
width: 280px;
height: 24px;
color:#FFFFFF;
position:absolute;
line-height: 25px;
font-size:14px;
text-align: left;
text-indent: 15px;
top: 0px;
margin-left: 12px;
}
#Messe{
float: right;
width: 300px;
height: 240px;
background: #000000;
margin-top: -140px;
margin-right: 45px;
border: 2px solid lightgray;
position:absolute;
left: 920px;
}
#Messe_bg{
float: right;
background: #8b8c8e;
width: 280px;
height: 24px;
margin-right:10px;
margin-top: 6px;
color:#FFFFFF;
line-height: 25px;
font-size:14px;
text-align: left;
text-indent: 15px;
}
#Jobs{
float: right;
width: 300px;
height: 80px;
background: white;
margin-top: 125px;
margin-right: -300px;
border: 2px solid lightgray;
position:absolute;
left: 920px;
}
#Jobs_bg{
float: right;
background: #8b8c8e;
width: 280px;
height: 24px;
margin-right:10px;
margin-top: -120px;
color:#FFFFFF;
line-height: 25px;
font-size:14px;
text-align: left;
text-indent: 15px;
}
#Weiterbildung{
float: right;
width: 300px;
height: 100px;
background: white;
margin-top: 230px;
margin-right: -300px;
border: 2px solid lightgray;
position:absolute;
left: 920px;
}
#Weiterbildung_bg{
float: right;
background: #8b8c8e;
width: 280px;
height: 24px;
margin-right:10px;
margin-top: 6px;
color:#FFFFFF;
line-height: 25px;
font-size:14px;
text-align: left;
text-indent: 15px;
}
Die "Placeholder" Tags sind für django-cms womit das ganze mit Inhalt befüllt wird. WIe kann ich das am besten umsetzen bzw. wie macht ihr sowas? Wäre auch nicht abgeneigt wenn ihr mit ein wenig code um euch werft
CSS3 ist auch erlaubt sollte es dadurch leichter gehen.
Grüße
Zuletzt bearbeitet: