art-d-sign
-


Hinweise


Antwort
 
LinkBack Themen-Optionen Thema durchsuchen Thema bewerten
Alt 06.11.2003, 11:44   #1
TP-Insider
 
Benutzerbild von NicNac
 
Registriert seit: Apr 2001
Ort: Zürich, Schweiz
NicNac macht alles soweit korrekt

Layerproblem


Hi

Ich will jetzt mal das Grundlayout meiner Seite in CSS-Layer umprogrammieren, doch irgendwie schnall ich das mit position: absolute und irgendwie gleichzeitiger Zentrierung offenbar nicht, denn das Script hat offenbar noch Macken...


(ANMERKUNG: Code rausgeschnitten, da
a) nicht mehr aktuell, nur noch der im unteren Post
b) damit das Thema nicht zu lange wird)


Also alles hat geklappt, bis ich den main Container aufmachte, denn es sollte ja alles gemittet sein, auch der Main Container und bis dahin musste ich keine position angeben, nur gemittet. Da aber der position Container (mit You are here...) im Main Container beginnen soll und der leftbar Container auch im Main Container neben dem position container sein soll, gabs irgendwelche Probleme

Wäre dankbar für jede Hilfe
__________________
http://www.exploreourplanet.net - Ladet eure schönsten Urlaubsbilder hoch!

Geändert von NicNac (06.11.2003 um 13:38 Uhr).
NicNac ist offline   Mit Zitat antworten


Alt 06.11.2003, 13:37   #2
TP-Insider
 
Benutzerbild von NicNac
 
Registriert seit: Apr 2001
Ort: Zürich, Schweiz
NicNac macht alles soweit korrekt
Hi

Also ich bin jetzt selber bisserl weitergekommen aber jetzt stecke ich endgültig fest. Es müsste eigentlich(wie bei verschachtelten Tabellen) der rightbar container bis ans Dokumentende mit dem content container mitgehen, aber das macht er nicht. Wieso?!

Der Code nochmal:

1. CSS:

PHP-Code:
body {
      
font-familyArialHelveticasans-serif
      
text-aligncenter;
      
scrollbar-face-color#A4BBD7; 
      
scrollbar-highlight-color#003366; 
      
scrollbar-shadow-color#003366; 
      
scrollbar-3dlight-color#A4BBD7; 
      
scrollbar-arrow-colorwhite;  
      
scrollbar-track-colorwhite
      
scrollbar-darkshadow-color#A4BBD7; 
      
background#CDD9E8;
     
}

#topheader {
      /* anwendung eines hacks */
      /*/*/
      
text-alignleft;
      
/**/
      
margin-leftauto;
      
margin-rightauto;
      
margin-top50px;
      
width700px;
      
height35px;
      
background#CDD9E8;
      
}
    
#middleheader {
      /* anwendung eines hacks */
      /*/*/
      
text-alignleft;
      
/**/
      
margin-leftauto;
      
margin-rightauto;
      
width700px;
      
height1px;
      
background#003366; 
      
}
      
#bottomheader {
      /* anwendung eines hacks */
      /*/*/
      
text-alignleft;
      
/**/
      
margin-leftauto;
      
margin-rightauto;
      
width700px;
      
height77px;
      
background#A4BBD7;
      
border#003366 1px solid;
      
border-top-width0;
      
border-right-width1px;
      
border-bottom-width0;
      
border-left-width1px;
      }
      
#navigation {
      /* anwendung eines hacks */
      /*/*/
      
text-alignleft;
      
/**/
      
margin-leftauto;
      
margin-rightauto;
      
width700px;
      
height22px;
      
background#A4BBD7;
      
border#003366 1px solid;
      
}
      
#main {
      /* anwendung eines hacks */
      /*/*/
      
text-alignleft;
      
/**/
      
margin-leftauto;
      
margin-rightauto;
      
width700px;
      
backgroundwhite;
      
border#003366 1px solid;
      
border-top-width0;
      
border-right-width0;
      
border-bottom-width1px;
      
border-left-width1px;
      }
      
#position {
      
width549px;
      
height15px;
      
floatleft;
      
text-alignleft;
      
background#E6F0FA;
      
border#003366 1px solid;
      
border-top-width0;
      
border-right-width0;
      
border-bottom-width1px;
      
border-left-width0;
          }

#rightbar {
      
width150px;
      
height100%;
      
floatright;
      
text-alignleft;
      
background#A4BBD7;
      
border#003366 1px solid;
      
border-top-width0;
      
border-right-width1px;
      
border-bottom-width0;
      
border-left-width1px;
         }
         
#content {
      
padding5px;
      
floatleft;
      
margin0;
      
width549px;
      
text-alignleft;
      
backgroundwhite;
        } 
2. Die PHP Datei:

PHP-Code:
<body>
<!-- 
Top Header !-->
<
div id="topheader"><img src="images/logotop.jpg" width="124" height="35" /></div>

<!-- 
Middle Header !-->
<
div id="middleheader"><img src="images/logomiddle.jpg" width="124" height="1" /></div>

<!-- 
Bottom Header !-->
<
div id="bottomheader"><img src="images/logobottom.jpg" width="124" height="77" /></div>

<!-- 
Navigation Container !-->
<
div id="navigation">
<
a href="index.php?ind=home"><img src="images/home.jpg" alt="" width="103" height="20" border="0" /></a>
<
a href="index.php?ind=search"><img src="images/search.jpg" alt="" width="109" height="20" border="0" /></a>
<
a href="index.php?ind=view"><img src="images/memberzone.jpg" alt="" width="184" height="20" border="0" /></a>
<
a href="index.php?ind=register"><img src="images/register.jpg" alt="" width="139" height="20" border="0" /></a>
<
a href="index.php?ind=information"><img src="images/info.jpg" alt="" width="163" height="20" border="0" /></a>
</
div>

<!-- 
Main Container !-->
<
div id="main"

    <!-- 
Position Container !-->
    <
div id="position"></div>
  
    <!-- 
Rightbar Container !-->
    <
div id="rightbar">
    <
p>aaaaaaa</p>
    <
p>aaa</p>
    <
p>aa</p>
    </
div>
  
    <!-- 
Content Container !-->
    <
div id="content">Inhalt</div>

</
div>

</
body
__________________
http://www.exploreourplanet.net - Ladet eure schönsten Urlaubsbilder hoch!
NicNac ist offline   Mit Zitat antworten
Antwort

  Aktuelles Thema
  TP Hilfe Forum > Web-Editoren & Coding > HTML Puristen
Layerproblem Layerproblem
« Homesite 5.x und Proxy-Einstellungen | Oper 5+7 Problem, Opera 6 no problem »

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)
 
Themen-Optionen Thema durchsuchen
Thema durchsuchen:

Erweiterte Suche
Thema bewerten
Thema bewerten:

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an
Gehe zu


Alle Zeitangaben in WEZ +2. Es ist jetzt 10:36 Uhr.

Powered by: vBulletin Version 3.7 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd. / Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.
Traum-Projekt.com | Suchen | Archiv | Impressum | Kontakt | | | Nach oben |



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67