Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #679324

    Hi,
    I would like to change the layout of the individual posts so that they are not in a narrow paragraph in the middle of the page but spread across the whole of the page. Is this possible?
    At the moment I have set up the single post option as Multi Author blog.
    Details of the page below
    Cheers

    #680499

    Hi bauchope,

    Did you try the Masonry element to display your blog posts?

    Thanks,
    Rikard

    #680595

    Hi,
    I used the following css to sort it – which it has but now the posts have disappeared from the mobile version!
    #top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper { max-width: 100%; }

    Any suggestions please?

    #680658

    I have exactly the same issue the blog post content is to narrow. Even if I don’t have any sidebar it is 600px wide max.

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;

    If I remove the line max-width: 600px; then it is 800px default because it is defined here.

    #top .fullsize .template-blog .post .entry-content-wrapper {
        text-align: justify;
        font-size: 1.15em;
        line-height: 1.7em;
        max-width: 800px;
        margin: 0 auto;
        overflow: visible;

    I don’t won’t is to create a custom single post layout and maintain it. I want to modify the default one and be it a bit wider. Is there an option to do so?

    #682413

    Hi,

    Please use this code in the Quick CSS field to increase the default width of the posts wrapper:

    #top .fullsize .template-blog .post .entry-content-wrapper {
        max-width: 100%;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper>* {
        max-width: 100%;
    }

    Best regards,
    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.