質問編集履歴

4

CSSを追加

2019/03/17 04:58

投稿

HozDer
HozDer

スコア25

test CHANGED
File without changes
test CHANGED
@@ -239,3 +239,137 @@
239
239
 
240
240
 
241
241
  ```
242
+
243
+
244
+
245
+ ```css
246
+
247
+ /*
248
+
249
+ Theme Name: jinro_theme
250
+
251
+ Theme URI: https://rmultigamingsever.com/
252
+
253
+ Author: the jinro_theme
254
+
255
+ Author URI: https://rmultigamingsever.com/
256
+
257
+ Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
258
+
259
+ Version: 1.0
260
+
261
+ */
262
+
263
+
264
+
265
+ body {
266
+
267
+ font-size: 14px;
268
+
269
+ font-family: Arial, Verdana;
270
+
271
+ margin: 0;
272
+
273
+ }
274
+
275
+
276
+
277
+ a {
278
+
279
+ text-decoration: none;
280
+
281
+ }
282
+
283
+
284
+
285
+ p {
286
+
287
+ padding-bottom: 14px;
288
+
289
+ margin: 0;
290
+
291
+ line-height: 1.8;
292
+
293
+ }
294
+
295
+
296
+
297
+ .container {
298
+
299
+ width: 100%;
300
+
301
+ margin: 0 auto;
302
+
303
+ overflow: hidden;
304
+
305
+ }
306
+
307
+
308
+
309
+ /* header */
310
+
311
+
312
+
313
+ #header {
314
+
315
+
316
+
317
+ }
318
+
319
+
320
+
321
+ /* posts */
322
+
323
+
324
+
325
+ #posts {
326
+
327
+ float: right;
328
+
329
+ width: 435px;
330
+
331
+ margin-top: 50px;
332
+
333
+ }
334
+
335
+
336
+
337
+ /* sidebar */
338
+
339
+
340
+
341
+ #sidebar {
342
+
343
+ float: left;
344
+
345
+ width: 300px;
346
+
347
+ font-weight: bold;
348
+
349
+ text-align: center;
350
+
351
+ margin-top: 100px;
352
+
353
+ }
354
+
355
+
356
+
357
+ /* footer */
358
+
359
+
360
+
361
+ #footer {
362
+
363
+ padding: 15px 0;
364
+
365
+ font-size: 12px;
366
+
367
+ color: #aaa;
368
+
369
+ border-top: 1px solid #ccc;
370
+
371
+ }
372
+
373
+
374
+
375
+ ```

3

header.phpを追加

2019/03/17 04:57

投稿

HozDer
HozDer

スコア25

test CHANGED
File without changes
test CHANGED
@@ -183,3 +183,59 @@
183
183
  bootstrap.min.js
184
184
 
185
185
  bootstrap.min.js.map
186
+
187
+ ```html
188
+
189
+ <!doctype html>
190
+
191
+ <html lang="ja">
192
+
193
+ <head>
194
+
195
+ <!-- Required meta tags -->
196
+
197
+ <meta charset="utf-8">
198
+
199
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
200
+
201
+
202
+
203
+ <!-- Bootstrap CSS -->
204
+
205
+ <link rel="stylesheet" href="<?php echo get_template_directory_uri().'/css/bootstrap.css'; ?>">
206
+
207
+ <link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>">
208
+
209
+
210
+
211
+ <title><?php bloginfo('name'); ?></title>
212
+
213
+ </head>
214
+
215
+ <body>
216
+
217
+ <div id="header" class="container">
218
+
219
+ <h1><a href="<?php echo home_url('/'); ?>"><?php bloginfo('name'); ?></a></h1>
220
+
221
+ <?php wp_nav_menu(); ?>
222
+
223
+ </div><!-- /header -->
224
+
225
+ <?php wp_head(); ?>
226
+
227
+
228
+
229
+ <!-- Optional JavaScript -->
230
+
231
+ <!-- jQuery first, then Popper.js, then Bootstrap JS -->
232
+
233
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
234
+
235
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
236
+
237
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
238
+
239
+
240
+
241
+ ```

2

外観の設定からメニュー構造を設定に関する問題です。 画面上部にあるホーム、コミュニティ、ゲームガイドの部分が箇条書きに書き換えられます。を追加

2019/03/17 04:51

投稿

HozDer
HozDer

スコア25

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,10 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
- wordpressにてテーマの固定ペ作成
3
+ wordpressにてテーマのメニューを編集
4
+
5
+ 外観の設定からメニュー構造を設定に関する問題です。
6
+
7
+ 画面上部にあるホーム、コミュニティ、ゲームガイドの部分が箇条書きに書き換えられます。
4
8
 
5
9
  ```html
6
10
 

1

また、ソースのCSSにあるuser agent stylesheetは変更可能でしょうかを削除

2019/03/17 04:38

投稿

HozDer
HozDer

スコア25

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
  のようにulに変更されているこの原因と解決方法を教えてほしいです。
30
30
 
31
- また、ソースのCSSにあるuser agent stylesheetは変更可能でしょうか。
31
+
32
32
 
33
33
 
34
34