How to change blog width

Home Forums Jevelin Theme How to change blog width

Home Forums Jevelin Theme How to change blog width

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    RESOLVED Posts
  • Vivienne
    Participant

    Hello,

     

    I would like to decrease my column width for all blog articles. (See screenshot attached — the green box is approximately how much smaller I want the container to be for images and line length.

     

    I was able to do it on this page with the yellow editor by adding a padding on the right:

    http://thisonederfullife.com/index.php/2019/10/06/sleep-training-a-saga/

     

    But this effect isn’t applied globally (see this blog page which has the full width again).
    http://thisonederfullife.com/index.php/2019/10/06/my-recovery-from-sibo/

     

    How can I have that extra padding-right (or other way of making the max-width smaller for my blog content) on ALL blog posts always?

     

    This is another blog which is an example of how narrow I want articles to be. The shorter line length is easier to read.

    https://www.preciouslittlesleep.com/monumental-guide-to-short-naps/

    • This topic was modified 4 years, 6 months ago by Vivienne.
    Attachments:
    You must be logged in to view attached files.

    Vivienne
    Participant

    I just noticed the problem with doing this in the yellow editor is on mobile it looks awful (screenshot attached).

    Please advise on the best way to make this blog content container more narrow, in a way that’s also responsive for mobile devices!

    Thank you!

     

    • This reply was modified 4 years, 6 months ago by Vivienne.
    Attachments:
    You must be logged in to view attached files.

    Vivienne
    Participant

    Related problem so keeping in same ticket — I cannot undo the padding issue on my ‘about’ page (see image, text cut off on left side). How can I fix this? (I want it to be the same max-width container as on my blog pages!)

    http://thisonederfullife.com/index.php/about/

    Attachments:
    You must be logged in to view attached files.

    Solution for this topic

    Hi @Vivienne,

     

    I hope you are well today and thank you for your questions.

     

    Please remove the changes you have made using CSS code to achieve this and add the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    @media (min-width: 1025px){
    .page #content.content-with-sidebar-right,
    .single-post #content.content-with-sidebar-right {
        width: 68%;
    }
    
    .page .container.entry-content,
    .single-post .container.entry-content {
        max-width: 1000px!important;
    }
    
    .page #sidebar.sidebar-right,
    .single-post #sidebar.sidebar-right {
        width: 30%;
    }
    }

     

    Best regards,
    Shufflehound team

    Vivienne
    Participant

    YOU. ARE. AMAZING!!!

     

    Thank you so much!

    You are always welcome here 🙂

Viewing 6 posts - 1 through 6 (of 6 total)