how can i change the blog post width layout?
i have a menu on the left side, the blog post on the center and a empty right side that i want to use as blog post.
menu on the left side and everything else on the right as a blog post.
1 Answers
If you want to change the Blog width layout, You can open the layout-blog.php file in the folder path “\wp-content\themes\dw-wallpress “, find the line 39 and remove the following code:
<?php get_sidebar('secondary'); ?>
After removing the code, You can log in to Dashboard > Appearance > Customize > Custom Code, add the following code to the “Header Code”
<style>
.page-template-layout-blog-php #content {
max-width: 100%;
}
</style>
Hope this helps !
Please login or Register to submit your answer