styled more posts navigation position in archive view
This commit is contained in:
parent
9571fbb5a9
commit
cf9deef323
|
@ -1357,6 +1357,7 @@ Add your custom styles in this file so it is easier to update the theme.
|
|||
.edit-post-visual-editor__content-area .posts-navigation, .site-main
|
||||
.edit-post-visual-editor__content-area .post-navigation {
|
||||
margin: 0 0 1.5em;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.edit-post-visual-editor__content-area .comment-navigation .nav-links,
|
||||
|
@ -1374,7 +1375,6 @@ Add your custom styles in this file so it is easier to update the theme.
|
|||
.edit-post-visual-editor__content-area .comment-navigation .nav-next,
|
||||
.edit-post-visual-editor__content-area .posts-navigation .nav-next,
|
||||
.edit-post-visual-editor__content-area .post-navigation .nav-next {
|
||||
text-align: end;
|
||||
flex: 1 0 50%;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -35,7 +35,8 @@ get_header();
|
|||
get_template_part( 'template-parts/section', 'eachpost' );
|
||||
|
||||
endwhile;
|
||||
|
||||
|
||||
the_posts_navigation();
|
||||
|
||||
else :
|
||||
|
||||
|
|
|
@ -31,14 +31,16 @@ get_header();
|
|||
|
||||
endwhile;
|
||||
|
||||
echo '</content>';//end content ajuts
|
||||
|
||||
the_posts_navigation();
|
||||
echo '</content>';//end content ajuts
|
||||
|
||||
else :
|
||||
get_template_part( 'template-parts/content', 'none' );
|
||||
|
||||
endif;
|
||||
?>
|
||||
|
||||
?>
|
||||
|
||||
</main><!-- #main -->
|
||||
|
||||
|
|
|
@ -315,6 +315,7 @@
|
|||
|
||||
.site-main & {
|
||||
margin: 0 0 1.5em;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
|
@ -326,7 +327,7 @@
|
|||
}
|
||||
|
||||
.nav-next {
|
||||
text-align: end;
|
||||
//text-align: end;
|
||||
flex: 1 0 50%;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1292,6 +1292,7 @@ textarea {
|
|||
.posts-navigation, .site-main
|
||||
.post-navigation {
|
||||
margin: 0 0 1.5em;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.comment-navigation .nav-links,
|
||||
|
@ -1309,7 +1310,6 @@ textarea {
|
|||
.comment-navigation .nav-next,
|
||||
.posts-navigation .nav-next,
|
||||
.post-navigation .nav-next {
|
||||
text-align: end;
|
||||
flex: 1 0 50%;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue