Hello there,
I want to increase the blog post page width to match the normal page width of the theme.
Is there a CSS that can achieve this?
Kind regards,
Jovica
Hello there,
I want to increase the blog post page width to match the normal page width of the theme.
Is there a CSS that can achieve this?
Kind regards,
Jovica
Hi,
There is no simple CSS snippet for this because this page, like some others, is restricted by the width of the container. If you want to change this, you will need to add some CSS tweaks here.
Thanks Andrii,
I am not quite sure what you meant by “you will need to add some CSS tweaks here”?
Happy to play with CSS, just point me in the righ direction.
Kind regards,
Jovica
I achieved it by following snippet:
/* Set width for blog posts */
.single-post .site-content .container {
max-width: 100% !important;
width: auto !important;
margin-left: auto !important;
margin-right: auto !important;
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.