Prosty kod ale wkradł się błąd. Pomocy. - Wersja do druku
+- Forum Webmastera, HTML, CSS, PHP, MySQL, Hosting, Domeny - Forum dla Webmasterów (https://www.webmastertalk.pl)
+-- Dział: Technologie internetowe - tworzenie stron WWW (https://www.webmastertalk.pl/forum-technologie-internetowe-tworzenie-stron-www)
+--- Dział: Początkujący webmaster (https://www.webmastertalk.pl/forum-poczatkujacy-webmaster)
+--- Wątek: Prosty kod ale wkradł się błąd. Pomocy. (/thread-prosty-kod-ale-wkradl-sie-blad-pomocy)
|
Prosty kod ale wkradł się błąd. Pomocy. - namite - 19-02-2013
Cześć, stworzyłem kod niejako szkieletu, szablonu allegro. Problem tkwi w stopce, która ciągle się chowa. Linki do zdjęć w kodzie są z hostingu, więc jakby ktoś mógł mi pomóc kod umieszczam poniżej.
Cytat:<style>
body {
background:#C6CECE;
margin:0;
padding:0;
}
#content {
margin: 0 auto;
width:960px;
verflow:hidden;
}
#header {
background:url(http://s4.ifotos.pl/img/headerpng_xanqqxx.png) center ;
width: 960px;
height: 250px;
margin-top: 10px ;
margin-left: auto ;
margin-right: auto ;
}
#lewa {
float: left;
}
#lewa h1 {
background:url(http://s4.ifotos.pl/img/h1png_xaerwww.png) no-repeat;
margin-top:10px;
width:250px;
height:39px;
font-family:"Lucida Sans unicode";
color:#000;
font-size:19px;
text-align:center;
margin-left:0px;
margin-bottom:5px;
}
#lewa h2 {
background:url(http://s4.ifotos.pl/img/h2png_xaeraqs.png) no-repeat;
margin-top:10px;
width:290px;
height:39px;
font-family:"Lucida Sans unicode";
color:#000;
font-size:19px;
text-align:center;
margin-left:0px;
margin-bottom:5px;
}
#lewa h3 {
background:url(http://s6.ifotos.pl/img/h3png_xaerqpp.png) no-repeat;
margin-top:10px;
width:290px;
height:39px;
font-family:"Lucida Sans unicode";
color:#000;
font-size:19px;
text-align:center;
margin-left:0px;
margin-bottom:5px;
}
.tabelka {
background:url(http://img249.imageshack.us/img249/2673/bgmalytop.gif) no-repeat #9e9e9e;
width:240px;
margin:0 0 0 0px;
padding:5px 5px 5px 5px;
color:#FFF;
font-family:tahoma;
font-size:12px;
}
#srodek {
background:url() #9e9e9e no-repeat;
width: 650px;
float:right;
margin-top: 10px;
padding:10px 10px 10px 10px;
color:#FFF;
font-family:tahoma;
font-size:14px;
}
#bottom {
background:url(http://s4.ifotos.pl/img/BOTTOMpng_xaexpeh.png) center no-repeat ;
width: 960px;
height: 250px;
margin-top:0px;
margin-left: auto ;
margin-right: auto ;
</style>
<div id="header">
</div>
<div id="content">
<div id="lewa">
<h1></h1>
<div class="tabelka">
1. Zabrania się lorem <br/>
2. Wzbronione jest lorem <br/>
3. Wysyłka jest lorem <br/>
</div>
<h2></h2>
<div class="tabelka">
1. Zabrania się lorem <br/>
2. Wzbronione jest lorem <br/>
3. Wysyłka jest lorem <br/>
</div>
<h3></h3>
<div class="tabelka">
1. Zabrania się lorem <br/>
2. Wzbronione jest lorem <br/>
3. Wysyłka jest lorem <br/>
</div>
</div>
<div id="srodek">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<br/><br/>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<br/><br/>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
<div id="bottom">
</div>
Jeszcze takie pytanie odnośnie polskich znaków. Jak je uzyskać?
RE: Prosty kod ale wkradł się błąd. Pomocy. - hub33k - 19-02-2013
Wydaje mi się, że do #bottom trzeba dodać clear: both.
A co do polskich znaków to
<meta charset="UTF-8" />
lub
<meta charset="iso-8859-2" />
RE: Prosty kod ale wkradł się błąd. Pomocy. - namite - 19-02-2013
Dobra. Teraz wszystko nabrało sensu. Wstawiłem w #bottom clear:both;. Lecz pojawił się kolejny problem. Powstała pewna duża odległość pomiędzy bottomem a resztą. I nie idzie jej zmniejszyc poprzez np. margin-top. Po prostu po wpisaniu wartości nic się nie dzieje.
Po usunięciu center z #bottom ten dolny box (bottom) przylega do tego boxa z textem ale również nie da się ustalić margin top i z kolei w tym przypadku zwiększyć odległości.
RE: Prosty kod ale wkradł się błąd. Pomocy. - hub33k - 19-02-2013
W typ przypadku trzeba zmienić wartość height na mniejszą.
RE: Prosty kod ale wkradł się błąd. Pomocy. - namite - 19-02-2013
Faktycznie pomogło. Pod warunkiem, że zostawiłem center pomimo iż mam margin left i right na auto. Do manipulacji odległością musiałem użyć height. Obrazek bottom miał 70px i dodałem do tego 20 px aby stowrzyć taką przerwe jak na screenie podobną do tej u góry pod headerem.
http://ifotos.pl/zobacz/yologamei_xaexqsw.jpg/
|