Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

 
Reply to this topicStart new topic
> [CSS] z tłem w php
Pokemon 202
post 2.03.2004, 19:49:31
Post #1





Grupa: Zarejestrowani
Postów: 21
Pomógł: 0
Dołączył: 14.01.2004

Ostrzeżenie: (0%)
-----


jak dam:
[php:1:c23d6a0412]<body bgcolor="#99FF99"></body>
<? $title = "News"; include ("head.php"); include ("news/index.php"); include ("foot.php");
?>[/php:1:c23d6a0412] to nie działa a jak dam:
[php:1:c23d6a0412]<body bgcolor="#99FF99"></body>
[/php:1:c23d6a0412] to działa sad.gif pomocy

--------------------------------
Temat zmoderowany
Seth


--------------------
MoJa GrA OnliNe w pHp : www.rpg202.glt.pl ;)
Go to the top of the page
+Quote Post
BoMeR-
post 2.03.2004, 19:54:04
Post #2





Grupa: Zarejestrowani
Postów: 11
Pomógł: 0
Dołączył: 9.12.2003
Skąd: Polska, Częstochowa

Ostrzeżenie: (0%)
-----


[php:1:f14d54db49]<body bgcolor="#99FF99">
<? $title = "News"; include ("head.php"); include ("news/index.php"); include
("foot.php");
?>
</body> [/php:1:f14d54db49]
powinno byc chyba tak biggrin.gif


--------------------
Warsztat: Apache 2.0.48 | PHP 4.3.4 | MySQL 4.0 | Pajaczek 5 NxG Pro
Go to the top of the page
+Quote Post
Pokemon 202
post 2.03.2004, 20:04:08
Post #3





Grupa: Zarejestrowani
Postów: 21
Pomógł: 0
Dołączył: 14.01.2004

Ostrzeżenie: (0%)
-----


Cytat
[php:1:8e11397fb1]<body bgcolor="#99FF99">
<? $title = "News"; include ("head.php"); include ("news/index.php"); include
("foot.php");
?>
</body> [/php:1:8e11397fb1]
powinno byc chyba tak biggrin.gif
nie działa :/


--------------------
MoJa GrA OnliNe w pHp : www.rpg202.glt.pl ;)
Go to the top of the page
+Quote Post
maulus
post 2.03.2004, 20:10:47
Post #4





Grupa: Zarejestrowani
Postów: 82
Pomógł: 0
Dołączył: 15.12.2003

Ostrzeżenie: (0%)
-----


użyj CSS
Go to the top of the page
+Quote Post
Pokemon 202
post 2.03.2004, 20:12:03
Post #5





Grupa: Zarejestrowani
Postów: 21
Pomógł: 0
Dołączył: 14.01.2004

Ostrzeżenie: (0%)
-----


mam tylko nie wiem o co chodzi bo mi go ktos zrbił
Kod
* {

font-family: verdana;

font-size: 11px;

}

.td {

border-top: solid black 1px;

border-bottom: solid black 1px;

border-left: solid black 1px;

border-right: solid black 1px;

}

iframe {

border-top: solid black 1px;

border-bottom: solid black 1px;

border-left: solid black 1px;

border-right: solid black 1px;

}

input, textarea, select {

color: black;

background: white;

border-top: solid black 1px;

border-bottom: solid black 1px;

border-left: solid black 1px;

border-right: solid black 1px;

}

a {

text-decoration: none;

text-transform: none;

color: #0066cc;

}

a:hover {

text-decoration: none;

text-transform: none;

color: #1199ff;

}

body {

background: white;

}

body, iframe, select, textarea {

scrollbar-face-color: white;

scrollbar-highlight-color: black;

scrollbar-shadow-color: black;

scrollbar-3dlight-color: white;

scrollbar-arrow-color: black;

scrollbar-track-color: white;

scrollbar-darkshadow-color: white;

scrollbar-base-color: white;

}
jak byś mogł mi dodać te tło? smile.gif


--------------------
MoJa GrA OnliNe w pHp : www.rpg202.glt.pl ;)
Go to the top of the page
+Quote Post
maulus
post 2.03.2004, 20:14:10
Post #6





Grupa: Zarejestrowani
Postów: 82
Pomógł: 0
Dołączył: 15.12.2003

Ostrzeżenie: (0%)
-----


Kod
BODY {

    BACKGROUND-COLOR: #FFFFFF

}


u ciebie to coś takiego
Kod
body {

background: white;

}
[/sql]
Go to the top of the page
+Quote Post
BoMeR-
post 2.03.2004, 20:15:41
Post #7





Grupa: Zarejestrowani
Postów: 11
Pomógł: 0
Dołączył: 9.12.2003
Skąd: Polska, Częstochowa

Ostrzeżenie: (0%)
-----


Kod
* {



font-family: verdana;

font-size: 11px;

}

body {

        background: #99FF99;

}

.td {

border-top: solid black 1px;

border-bottom: solid black 1px;

border-left: solid black 1px;

border-right: solid black 1px;

}

iframe {

border-top: solid black 1px;

border-bottom: solid black 1px;

border-left: solid black 1px;

border-right: solid black 1px;

}

input, textarea, select {

color: black;

background: white;

border-top: solid black 1px;

border-bottom: solid black 1px;

border-left: solid black 1px;

border-right: solid black 1px;

}

a {

text-decoration: none;

text-transform: none;

color: #0066cc; }

a:hover {

text-decoration: none;

text-transform: none;

color: #1199ff;

}

body, iframe, select, textarea {

scrollbar-face-color: white;

scrollbar-highlight-color: black;

scrollbar-shadow-color: black;

scrollbar-3dlight-color: white;

scrollbar-arrow-color: black;

scrollbar-track-color: white;

scrollbar-darkshadow-color: white;

scrollbar-base-color: white;

}


--------------------
Warsztat: Apache 2.0.48 | PHP 4.3.4 | MySQL 4.0 | Pajaczek 5 NxG Pro
Go to the top of the page
+Quote Post
maulus
post 2.03.2004, 20:16:41
Post #8





Grupa: Zarejestrowani
Postów: 82
Pomógł: 0
Dołączył: 15.12.2003

Ostrzeżenie: (0%)
-----


chłopak ma już background na dole smile.gif
Go to the top of the page
+Quote Post
BoMeR-
post 2.03.2004, 20:18:14
Post #9





Grupa: Zarejestrowani
Postów: 11
Pomógł: 0
Dołączył: 9.12.2003
Skąd: Polska, Częstochowa

Ostrzeżenie: (0%)
-----


dlatego w moim poscie zmienilem na takie tlo co chcial smile.gif


--------------------
Warsztat: Apache 2.0.48 | PHP 4.3.4 | MySQL 4.0 | Pajaczek 5 NxG Pro
Go to the top of the page
+Quote Post
Pokemon 202
post 2.03.2004, 20:27:35
Post #10





Grupa: Zarejestrowani
Postów: 21
Pomógł: 0
Dołączył: 14.01.2004

Ostrzeżenie: (0%)
-----


bu..... ale to tesz nie działa :x


--------------------
MoJa GrA OnliNe w pHp : www.rpg202.glt.pl ;)
Go to the top of the page
+Quote Post
BoMeR-
post 2.03.2004, 20:30:27
Post #11





Grupa: Zarejestrowani
Postów: 11
Pomógł: 0
Dołączył: 9.12.2003
Skąd: Polska, Częstochowa

Ostrzeżenie: (0%)
-----


obydwa nie dzialaja ?


--------------------
Warsztat: Apache 2.0.48 | PHP 4.3.4 | MySQL 4.0 | Pajaczek 5 NxG Pro
Go to the top of the page
+Quote Post
hwao
post 2.03.2004, 20:32:37
Post #12


Developer


Grupa: Moderatorzy
Postów: 2 844
Pomógł: 20
Dołączył: 25.11.2003
Skąd: Olkusz




$title = "News"; include ("head.php"); include ("news/index.php"); include
("foot.php");
Może w kturymś z tych plików masz jakieś <body> itp i to przeszkadza smile.gif (może jakies style)

Mogłbys pokazać jak to wyglada(na servie)
Go to the top of the page
+Quote Post
Pokemon 202
post 2.03.2004, 20:34:41
Post #13





Grupa: Zarejestrowani
Postów: 21
Pomógł: 0
Dołączył: 14.01.2004

Ostrzeżenie: (0%)
-----


hmm... ma <body> :x
bo jest zegarek biggrin.gif ew. wywale go i zobacze co jest


--------------------
MoJa GrA OnliNe w pHp : www.rpg202.glt.pl ;)
Go to the top of the page
+Quote Post
Paul
post 2.03.2004, 21:29:18
Post #14





Grupa: Zarejestrowani
Postów: 636
Pomógł: 0
Dołączył: 22.10.2003
Skąd: Katowice

Ostrzeżenie: (0%)
-----


problem z tlem w php 8O ludzie php nie ma nic do tla... to jest przeciez server side..... sprawa polega tylko na wypluciu odpowiedniego htmla czy cssa do przegladarki... dlatego uwazam, ze temat tego tematu (troche to dziwnie brzmi :wink: ) tego powinien zostac zmienony......
Go to the top of the page
+Quote Post
BoMeR-
post 2.03.2004, 22:19:55
Post #15





Grupa: Zarejestrowani
Postów: 11
Pomógł: 0
Dołączył: 9.12.2003
Skąd: Polska, Częstochowa

Ostrzeżenie: (0%)
-----


podaj kody includowanych plikow moze to cos pomoze smile.gif


--------------------
Warsztat: Apache 2.0.48 | PHP 4.3.4 | MySQL 4.0 | Pajaczek 5 NxG Pro
Go to the top of the page
+Quote Post
seaquest
post 3.03.2004, 15:35:32
Post #16





Grupa: Przyjaciele php.pl
Postów: 790
Pomógł: 7
Dołączył: 6.02.2003
Skąd: Polska

Ostrzeżenie: (0%)
-----


Odnośnie do post'a Pula:

Przenoszę: PHPPoczątkujący -> XHTML, CSS i ECMASCript


--------------------
Michał Płachta
Warsztat: Mac OS X Leopard, PostgreSQL, Text Mate, Retrospectiva + SVN
Go to the top of the page
+Quote Post

Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Wersja Lo-Fi Aktualny czas: 14.08.2025 - 14:57