Hoe ik kan: Class Content-area in Index.PHP in 3 divisies te verdelen?
Ik weet dat HTML 5 bestaat uit header ,navigation,content-area,aside ,article en footer secties.
nu mij vraag is:
Is het mogelijk om de Content.area in 3 Secties of Divisies te delen in Index.php.
Mij doel is:
ik wil in deze 3 Secties of 3 Divisies 3 Borders naast elkaar te zetten met width:300px en height:300px !
Mij index.php code is:
Code (php)
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package garage
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
/* Start the Loop */
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar();
get_footer();
[/code]
Ik denk het moet kunnen.
Welke Divisie Code ik moet hier toevoegen om deze [b]Content-area Class [/b] in 3 Divisies te verdelen?
dank u wel
johan
[size=xsmall][i]Toevoeging op 01/07/2016 21:22:53:[/i][/size]
Dank U Wel,
ik heb op deze manier geprobeerd om mij dole te breiken:
In Page.php ik heb deze dDivisies toegevoegd:
[code]
get_header(); ?>
<div id="primary" class="content-area1">
<div id="primary" class="content-area2">
<div id="primary" class="content-area3">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div>
</div>
<?php
get_sidebar();
get_footer();
[/code]
In Style.CSS ik heb deze code toegevoegd als test:
[code]
.content-area1{
border:1px solid red;
width:200px;
height:300px;
margin-top:200px;
margin-left:172px;
}
.content-area2{
border:1px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:400px;
}
.content-area3{
border:3px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:500px;
}
[/code]
1-Als U gaat naar:http://webdesignleren.net
U ziet dat bij derde border in 3e Sectie bovenste lijn van de 3e border heeft een beetje afwijking .
Wat zou hier de probleem zijn en hoe ik kan het oplossen?
2- Mij 2e vraag is als U kijkt goed in CSS Code bij 2e en 3e Content.area Class:
[code]
.content-area2{
border:1px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:400px;
}
.content-area3{
border:3px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:500px;
}
[/code]
Ik moest bij 2e en 3e Class van COntent-area margin-top:1px; gebruiken om alle 3 borders aan gelijke lijn te krijgen.
Terwijl ik heb bij Content-area1(top-margin=200px gebruikt).
Wat zou de oorzaak zijn dat ik bij 1-e Content-area ik moest Top-Margin=200px gebruiken terwijl bij 2e en 3e Top-Margin= 1px gebruiken om alle 3 borders aan gelijke lijn te krijgen?
johan
[size=xsmall][i]Toevoeging op 02/07/2016 12:33:54:[/i][/size]
hallo,
ik heb de probleem zelf opgelost op deze manier :
1- ik heb deze code toegevoegd in Single.php
[code]
<div id="primary" class="content-area1">
<div id="primary" class="content-area2">
<div id="primary" class="content-area3">
<main id="main" class="site-main" role="main">
[code]<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', get_post_format() );
the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div> </div>
<?php
get_sidebar();
get_footer();
[/code]
2-ik heb deze code toegevoegd in Style.CSS
[code]
.content-area1 {
border:1px solid grey;
margin-top: -200px;
width:500px;
height:200px;
margin-left:172px;
}
.content-area2 {
border:1px solid grey;
margin-top:-200px;
width:400px;
height:200px;
margin-left:692px;
}
[/code]
3- ik heb deze code toegevoegd in wordpress Home pagina:
[code]
<!DOCTYPE html>
<html>
<body>
<div class="content-area1">
</div>
<div class="content-area2">
</div>
</body>
</html>
[/code]
en dat is gelukt u kunt kijken de resultaat op : http://webdesignleren.net
johan
[size=xsmall][i]Toevoeging op 02/07/2016 12:35:32:[/i][/size]
hallo,
ik heb de probleem zelf opgelost op deze manier :
1- ik heb deze code toegevoegd in Single.php
[code]
<div id="primary" class="content-area1">
<div id="primary" class="content-area2">
<div id="primary" class="content-area3">
<main id="main" class="site-main" role="main">
[code][code]<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', get_post_format() );
the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div> </div>
<?php
get_sidebar();
get_footer();
[/code]
2-ik heb deze code toegevoegd in Style.CSS
[code]
.content-area1 {
border:1px solid grey;
margin-top: -200px;
width:500px;
height:200px;
margin-left:172px;
}
.content-area2 {
border:1px solid grey;
margin-top:-200px;
width:400px;
height:200px;
margin-left:692px;
}
[/code]
3- ik heb deze code toegevoegd in wordpress Home pagina:
[code]
<!DOCTYPE html>
<html>
<body>
<div class="content-area1">
</div>
<div class="content-area2">
</div>
</body>
</html>
[/code]
en dat is gelukt u kunt kijken de resultaat op : http://webdesignleren.net
johan
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package garage
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
/* Start the Loop */
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar();
get_footer();
[/code]
Ik denk het moet kunnen.
Welke Divisie Code ik moet hier toevoegen om deze [b]Content-area Class [/b] in 3 Divisies te verdelen?
dank u wel
johan
[size=xsmall][i]Toevoeging op 01/07/2016 21:22:53:[/i][/size]
Dank U Wel,
ik heb op deze manier geprobeerd om mij dole te breiken:
In Page.php ik heb deze dDivisies toegevoegd:
[code]
get_header(); ?>
<div id="primary" class="content-area1">
<div id="primary" class="content-area2">
<div id="primary" class="content-area3">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div>
</div>
<?php
get_sidebar();
get_footer();
[/code]
In Style.CSS ik heb deze code toegevoegd als test:
[code]
.content-area1{
border:1px solid red;
width:200px;
height:300px;
margin-top:200px;
margin-left:172px;
}
.content-area2{
border:1px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:400px;
}
.content-area3{
border:3px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:500px;
}
[/code]
1-Als U gaat naar:http://webdesignleren.net
U ziet dat bij derde border in 3e Sectie bovenste lijn van de 3e border heeft een beetje afwijking .
Wat zou hier de probleem zijn en hoe ik kan het oplossen?
2- Mij 2e vraag is als U kijkt goed in CSS Code bij 2e en 3e Content.area Class:
[code]
.content-area2{
border:1px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:400px;
}
.content-area3{
border:3px solid red;
width:200px;
height:300px;
margin-top:1px;
margin-left:500px;
}
[/code]
Ik moest bij 2e en 3e Class van COntent-area margin-top:1px; gebruiken om alle 3 borders aan gelijke lijn te krijgen.
Terwijl ik heb bij Content-area1(top-margin=200px gebruikt).
Wat zou de oorzaak zijn dat ik bij 1-e Content-area ik moest Top-Margin=200px gebruiken terwijl bij 2e en 3e Top-Margin= 1px gebruiken om alle 3 borders aan gelijke lijn te krijgen?
johan
[size=xsmall][i]Toevoeging op 02/07/2016 12:33:54:[/i][/size]
hallo,
ik heb de probleem zelf opgelost op deze manier :
1- ik heb deze code toegevoegd in Single.php
[code]
<div id="primary" class="content-area1">
<div id="primary" class="content-area2">
<div id="primary" class="content-area3">
<main id="main" class="site-main" role="main">
[code]<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', get_post_format() );
the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div> </div>
<?php
get_sidebar();
get_footer();
[/code]
2-ik heb deze code toegevoegd in Style.CSS
[code]
.content-area1 {
border:1px solid grey;
margin-top: -200px;
width:500px;
height:200px;
margin-left:172px;
}
.content-area2 {
border:1px solid grey;
margin-top:-200px;
width:400px;
height:200px;
margin-left:692px;
}
[/code]
3- ik heb deze code toegevoegd in wordpress Home pagina:
[code]
<!DOCTYPE html>
<html>
<body>
<div class="content-area1">
</div>
<div class="content-area2">
</div>
</body>
</html>
[/code]
en dat is gelukt u kunt kijken de resultaat op : http://webdesignleren.net
johan
[size=xsmall][i]Toevoeging op 02/07/2016 12:35:32:[/i][/size]
hallo,
ik heb de probleem zelf opgelost op deze manier :
1- ik heb deze code toegevoegd in Single.php
[code]
<div id="primary" class="content-area1">
<div id="primary" class="content-area2">
<div id="primary" class="content-area3">
<main id="main" class="site-main" role="main">
[code][code]<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', get_post_format() );
the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div> </div>
<?php
get_sidebar();
get_footer();
[/code]
2-ik heb deze code toegevoegd in Style.CSS
[code]
.content-area1 {
border:1px solid grey;
margin-top: -200px;
width:500px;
height:200px;
margin-left:172px;
}
.content-area2 {
border:1px solid grey;
margin-top:-200px;
width:400px;
height:200px;
margin-left:692px;
}
[/code]
3- ik heb deze code toegevoegd in wordpress Home pagina:
[code]
<!DOCTYPE html>
<html>
<body>
<div class="content-area1">
</div>
<div class="content-area2">
</div>
</body>
</html>
[/code]
en dat is gelukt u kunt kijken de resultaat op : http://webdesignleren.net
johan
Er zijn nog geen reacties op dit bericht.