前提・実現したいこと
左側にナビゲーションを固定で表示し、右側が内容になっているサイトを作っています。
flexで横並びにし、
左側は(width: 20%;height: 100%;max-width: 200px;)
右側は(width: 80%;max-width: 1400px;margin: 0 auto;)
のようにcssを書いています。
NEWS一覧ページ(archive.php)も他のページのように指定の幅いっぱいに広がってほしいです。
発生している問題・エラーメッセージ
NEWS一覧ページ(archive.php)だけ、タイトル下の画像サイズが半分以下の幅しか広がっていません。
それに伴い、他の要素もその幅になっています。
右側の中身は
・タイトル
・画像(width: 100%;height: 300px;object-fit: cover;を記述)
・記事のループ
他の固定ページと同じクラス名を使っています。
該当のソースコード
<?php /* Template Name: archive */ ?> <?php get_header("page"); ?> <main> <div class="top-right"> <section> <div class="news-list"> <h1 class="section-title">NEWS</h1> <img src="<?php echo get_stylesheet_directory_uri(); ?>/img/top-img.jpg" alt="" class="section-img"> <?php if ( have_posts() ): ?> <?php while ( have_posts() ) : the_post(); ?> <!--ループ--> <article class="article__item"> <a href="<?php the_permalink(); ?>"> <time class="date"><?php the_time("Y年m月d日"); ?></time> <h1 class="ttl"><?php the_title(); ?></h1> </a> </article> <!--//ループ--> <?php endwhile; ?> <!--ページ送り--> <nav class="pagenav"> <?php global $wp_query; $big = 999999999; // need an unlikely integer echo paginate_links( array( 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $wp_query->max_num_pages ) ); ?> </nav> <!--//ページ送り--> <?php else: ?> <!--投稿が見つからない--> <p>Not Found.</p> <!--//投稿が見つからない--> <?php endif; ?> </div> <div class="news-btn"> <p class="btn-view btn-news btn-mae"><a href="#"><i class="fas fa-chevron-left"></i>前へ</a></p> <p class="btn-view btn-news"><a href="#">次へ<i class="fas fa-angle-right"></i></a></p> </div> </section> </div> </div> </main> <?php get_footer(); ?>試したこと
①画像のheight: 300pxを外すと、画像はうまく幅いっぱいに広がってくれますが、高さ指定が消えてしまい、タイトル下の画像の高さがページごとに変わってしまいます。
②WordPressの管理画面、投稿ページのタイトルを長いものにすると、画像もその幅に広がります。
補足情報(FW/ツールのバージョンなど)
Mac使用、DW最新バージョン
あなたの回答
tips
プレビュー