<b>REGISTER</b>

GFX-Sector - HTML, CSS


 
GFX-Sector » Coding Area » Webentwicklung » HTML, CSS » css anpassung » Hello Guest [Login|Register]
Last Post | First Unread Post Print Page | Recommend to a Friend | Add Thread to Favorites

HTML, CSS

Einfache Scriptsprachen und deren Layout mit HTML und CSS
Post New Thread Post Reply

css anpassung

     Deutsche Version  English version
Author
Post « Previous Thread | Next Thread »

xenobeta
Filtertester


xenobeta hat kein Avatar

Registration Date: 14.06.2009
Posts: 3

Spacer
css anpassung

css anpassung

      

hallo und zwar hab ich dieses problem test homepagewie man sieht wird das content bg nicht mit runtergezogen ob wohl ich alles floate und dan cleare was kann ich da machen ??
code:
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:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
body {
background:#333333;
}

#container {
width:970px;
margin:0px auto;
text-align:left;
margin-top: 10px;
}

#header_hold {
width:970px;
}

#hold_static {
width:970px;
height:27px;
background: url(images/header01.jpg) no-repeat 0 0;
}

#hold_navi {
width:970px;
height:33px;
background:#000000;
}

#hold_mainheader {
background: url(images/header.JPG) no-repeat ;
width:970px;
height:185px;
}

#main_wrapper,#content {
	width:970px
}


#main_wrapper {
	background:url(images/bg_all.jpg) repeat-y 0 0
}


#content{
background:url(images/bg_all.jpg) repeat-y 0 0;
min-height:270px;
}
* html #content {height:270px}/* for ie6 and under*/

#columm_left {
width:200px;
display:inline;/* cure IE6 double margin bug*/
float:left;
}

#columm_main {
width:570px;
float:left;
}

#columm_right {
width:200px;
float:left;
display:inline;/* cure IE6 double margin bug*/
}

#box1 {
width:200px;
background:url(images/navi_lastnews.jpg) no-repeat 0 0;
border:0px;
}


#footer {
width:970px;
height:73px;
padding:20px 0 0 0;
background:url(images/footer.jpg) no-repeat 0 0;
clear:both;
}


und die index
code:
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:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
<?php
/*
##########################################################################
#                                                                        #
#           Version 4       /                        /   /               #
#          -----------__---/__---__------__----__---/---/-               #
#           | /| /  /___) /   ) (_ `   /   ) /___) /   /                 #
#          _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___               #
#                       Free Content / Management System                 #
#                                   /                                    #
#                                                                        #
#                                                                        #
#   Copyright 2005-2009 by webspell.org                                  #
#                                                                        #
#   visit webSPELL.org, webspell.info to get webSPELL for free           #
#   - Script runs under the GNU GENERAL PUBLIC LICENSE                   #
#   - It's NOT allowed to remove this copyright-tag                      #
#   -- http://www.fsf.org/licensing/licenses/gpl.html                    #
#                                                                        #
#   Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at),   #
#   Far Development by Development Team - webspell.org                   #
#                                                                        #
#   visit webspell.org                                                   #
#                                                                        #
##########################################################################
*/
/*this is just a test for the subversion branch feature, just ignore it!*/
// important data include
include("_mysql.php");
include("_settings.php");
include("_functions.php");

$_language->read_module('index');
$index_language = $_language->module;
// end important data include
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Clanpage using webSPELL 4 CMS" />
<meta name="author" content="webspell.org" />
<meta name="keywords" content="webspell, webspell4, clan, cms" />
<meta name="copyright" content="Copyright &copy; 2005 - 2009 by webspell.org" />
<meta name="generator" content="webSPELL" />
<!-- Head & Title include -->
<title><?php echo PAGETITLE; ?></title>
<link href="_stylesheet.css" rel="stylesheet" type="text/css" />
<link href="_layout.css" rel="stylesheet" type="text/css" />
<link href="tmp/rss.xml" rel="alternate" type="application/rss+xml" title="<?php echo getinput($myclanname); ?> - RSS Feed" />
<script src="js/bbcode.js" language="jscript" type="text/javascript"></script>
<!--[if IE ]>
<link href="iecss.css" rel="stylesheet" media="screen,projection" type="text/css" />
<![endif]-->
<!-- end Head & Title include -->
</head>
<body>
<div id="container">



	<div id="header_hold">



		<div id="hold_static"></div>



			<div id="hold_navi"></div>



				<div id="hold_login"></div>



					<div id="hold_mainheader"></div>


						</div><!--ENDE DIV HEADER_HOLD-->



	<div id="main_wrapper">


		<div id="content" class="clearfix">

			<div id="columm_left">

			<p>dfg</p>
			<p>dfg</p>
				<p>fdg</p>
				<p>dfg</p>
					<p>dfg</p>
						<p>dgf</p>
							<p>fghfg</p>
								<p>gfh</p>
									<p>vnvbng</p>
										<p>gfhgf</p>
											<p>cbcx</p>
												<p>dfgdfg</p>
													<p>cvbnjv</p>
<p>dfg</p>
			<p>dfg</p>
				<p>fdg</p>
				<p>dfg</p>
					<p>dfg</p>
						<p>dgf</p>
							<p>fghfg</p>
								<p>gfh</p>
									<p>vnvbng</p>
										<p>gfhgf</p>
											<p>cbcx</p>
												<p>dfgdfg</p>
													<p>cvbnjv</p>
													<p>dfg</p>
																<p>dfg</p>
																	<p>fdg</p>
																	<p>dfg</p>
																		<p>dfg</p>
																			<p>dgf</p>
																				<p>fghfg</p>
																					<p>gfh</p>
																						<p>vnvbng</p>
																							<p>gfhgf</p>
																								<p>cbcx</p>
																									<p>dfgdfg</p>
																										<p>cvbnjv</p>
																										<p>dfg</p>
																													<p>dfg</p>
																														<p>fdg</p>
																														<p>dfg</p>
																															<p>dfg</p>
																																<p>dgf</p>
																																	<p>fghfg</p>
																																		<p>gfh</p>
																																			<p>vnvbng</p>
																																				<p>gfhgf</p>
																																					<p>cbcx</p>
																																						<p>dfgdfg</p>
																																							<p>cvbnjv</p>












				</div><!--ENDE DIV COLUMM_LEFT-->




				<div id="columm_main"></div><!--ENDE DIV COLUMM_MAIN-->





					<div id="columm_right"></div><!--ENDE DIV COLUMM_RIGHT-->

















			</div><!-- ENDE DIV CLEARFIX-->
		</div><!-- ENDE DIV MAIN_WRAPPER-->







<div id="footer"></div>




	</div><!--ENDE DIV CONTAINER -->
</body>
</html>


und hat jemand eine idde oder hab ich etwas falsch gemacht ??

This post has been edited 1 time(s), it was last edited by xenobeta: 17.08.2009 15:02.

css anpassung 17.08.2009 10:27 xenobeta is offline Homepage of xenobeta Search for Posts by xenobeta

izak.stern izak.stern is a male
Ohnefiltergrafiker


izak.stern hat kein Avatar

Registration Date: 18.02.2008
Posts: 478

Spacer
      

guck dir ma das attribut 'overflow' an... Wink



css anpassung 17.08.2009 15:05 izak.stern is offline Homepage of izak.stern Search for Posts by izak.stern

xenobeta
Filtertester


xenobeta hat kein Avatar

Registration Date: 14.06.2009
Posts: 3

Thread Starter Thread Started by xenobeta
Spacer
      

jo danke jetzt funkts hab ganz die fuktion vergessen smile

css anpassung 17.08.2009 15:50 xenobeta is offline Homepage of xenobeta Search for Posts by xenobeta
 
Spacer
   
GFX-Sector
unregistered


 hat kein Avatar


Spacer

Have you enjoyed this topic?


If you were enjoying this post and if you keen on reading more interesting stuff then do not hesitate to complete the free sign up.

After the free registration you will gain access to all areas and you will be able to communicate with other artists from all over the world.

In addition you will benefit from our Photoshop and coding section as well as from our huge (hundreds of gigabytes) free resource section where you can find everything you will need to be a successful (web) designer/artist.

Sign up now and enjoy the advantages as a registered member.

(This website will be ad-free after a complete free sign up.)

New Post 17.08.2009 15:50  
Tree Structure | Board Structure
Post New Thread Post Reply
GFX-Sector » Coding Area » Webentwicklung » HTML, CSS » css anpassung

Similar topics to css anpassung
Thread
[HTML/CSS] [X]HTML / CSS Ressourcen und Fortführendes (Forum: HTML & CSS Tutorials)
[Verschenke] Webspell Anpassung (Forum: Archiv)
Sony Ericsson xperia x10 (Forum: Multimedia)
[Biete Leistung] HTML Umsetzung+Webspell anpassung (Forum: Archiv)
[HTML/CSS/JS]Enterseite (Regelzustimmung - erst dann Weiterleitung) (Forum: Scripte & Downloads)