style(layout): widen content columns in article and letter pages
Increased the column width from col-lg-8 to col-lg-10 in both article and letter templates to improve readability and make better use of screen real estate on larger devices. This change enhances the visual presentation of content without compromising layout integrity.
This commit is contained in:
parent
5201a8a7d6
commit
f2a32cf134
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
<!-- Article Content -->
|
||||
<section class="container my-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 mx-auto">
|
||||
<div class="col-lg-10 mx-auto">
|
||||
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
||||
<h1 class="display-4"><?php the_title(); ?></h1>
|
||||
<p class="text-muted">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<!-- Letter Content -->
|
||||
<section class="container my-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 mx-auto">
|
||||
<div class="col-lg-10 mx-auto">
|
||||
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
||||
<h1 class="display-4"><?php the_title(); ?></h1>
|
||||
<p class="text-muted">
|
||||
|
|
Loading…
Reference in a new issue