wordpress で自作テーマをアップしたのですが、cssがうまく反映されません。
なお、wordpress上のテキストエディタでcssに編集を加えても全く変化はないです。
個人的には、php初心者ですので
php
1<!DOCTYPE html> 2 <html lang="ja"> 3 <head> 4 <meta charset="UTF-8"> 5 6 <title> 7 <?php wp_title( '|',true, 'right'); ?> 8 <?php bloginfo('name'); ?> 9 </title> 10 11 <meta name="viewport" content="width=device-width,initial-scale=1.0"> 12 13 <link rel="stylesheet" href="<?php echo get_stylesheet_uri( ); ?>" > 14 15 <?php wp_head();?> 16 </head> 17<body <?php body_class();?>> 18 19 <header> 20 <div class="site"> 21 <h1> 22 <a href="<?php echo home_url();?>"> 23 <?php bloginfo('name');?> 24 </a> 25 </h1> 26 </div> 27 </header> 28
css
1@charset "UTF-8"; 2/* 3Theme Name: MY THEME 4Author: challenger 5Description: This is my original theme. 6Version 1.0 7*/ 8 9 10body { 11 margin:0; 12 font-family:'メイリオ', 13 'Hiragino Kaku Gothic Pro',sans-serif; 14 line-height:1.5 15} 16 17@media (min-width:768px){ 18 19 .container:after{ 20 content:""; 21 display:block; 22 clear:both; 23 } 24 25 .contents{ 26 float:left; 27 width:70%; 28} 29 .sub{ 30 float:left; 31 width:30%; 32 } 33 34} 35/*--------------------------------------------------------------header----------------------------------------------------------------------------------------*/ 36/*pradise */ 37 38.site h1 a { 39 color:#000000; 40 text-decoration:none; 41}
php2
1 <?php get_header(); ?> 2 3 <div class="container"> 4 <div class="contents"> 5 CONTENTS 6 </div> 7 8 <div class="sub"> 9 SIDEBAR 10 </div> 11 </div> 12 13 <?php get_footer(); ?> 14
php3
1<footer> 2 FOOTER 3</footer> 4 5 6<?php wp_footer();?> 7</body> 8</html>
回答4件
あなたの回答
tips
プレビュー