Tagged: 

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #93499
    catwingz
    Participant

    Hi,
    What is the CSS to make the right sidebar about 1/3 narrower and the content area correspondingly wider?

    thank you

    #93520
    Mahesh
    Keymaster

    @catwingz: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .two-columns #primary {
        width: 900px;
    }
    
    .two-columns #secondary {
        width: 250px;
    }
      
    @media screen and (max-width: 1280px) {
        .two-columns #primary {
            width: 840px;
        }
    }
    
    @media screen and (max-width: 1152px) {
        .two-columns #primary {
            width: 780px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        .two-columns #primary {
            width: 700px;
        }
    }
      
    @media screen and (max-width: 1000px) {
        .two-columns #primary {
            width: 640px;
        }
    }
      
    @media screen and (max-width: 940px) {
        .two-columns #primary {
            width: 530px;
        }
      
        .two-columns #secondary {
            width: 200px;
        }
    }
    
    @media screen and (max-width: 782px) {
        .two-columns #primary {
            width: 100%;
        }
      .two-columns #secondary {
            width: 620px;
        }
    }
    
    @media screen and (max-width: 640px) {
        .two-columns #secondary {
            width: 520px;
        }
    }
    
    @media screen and (max-width: 568px) {
        .two-columns #secondary {
            width: 560px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .two-columns #secondary {
            width: 100%;
        }
    }

    Regards,
    Mahesh

    #93799
    catwingz
    Participant

    This is great! I hope this will be exactly what she wanted. Thank you

    #93832
    Mahesh
    Keymaster

    @catwingz: Looking forward for it too. Have a nice day! 🙂

    Regards,
    Mahesh

    #94010
    joeh47
    Participant

    I have the free version of Adventurous and would like to make the content full width so when I have no sidebar on a page the content width is equal to about the space width that would be normally be occupied if side bar were present. If the side bar were enable then the content width would have to return to the original value.

    Thanks
    Joe

    #94037
    Mahesh
    Keymaster

    @joeh47: The option you are seeking is available in Adventurous Pro. It has No Sidebar (Full width) layout options, the one you want to have plus more other options too. I recommend you to upgrade to Pro.

    Regards,
    Mahesh

    #96603
    catwingz
    Participant

    This is really weird. I posted a follow-up question several weeks ago and now it is gone…
    So the public view of the website is much improved, but the view in the post and page editor now has a wide margin on the right side. This is causing problems for my client when she is trying to format her posts and place images, etc. What can be done to remove this and catch the editing experience up with the actual site?
    thank you

    #96628
    Mahesh
    Keymaster

    @catwingz: Please post in your site url.

    #96663
    catwingz
    Participant
    #96672
    catwingz
    Participant

    This is a second attempt. For some reason my posts keep disapearing.

    #96673
    catwingz
    Participant
    #96767
    Mahesh
    Keymaster

    @catwingz: The problem that you have blank post in above reply is you have put the <a> tag but nothing to display in it. I checked your site but didn’t see any issue, may be I missed it. Can you please tell me in which page is the problem is actually ocurring? (page with problem – url)

    Regards,
    Mahesh

    #97175
    catwingz
    Participant

    As I said, this is a problem with the editing area for posts and pages in the admin, not with the public site. The following are links showing the difference between what the preview of a post looks like in comparison with the view in the editing window. The wide right margin is causing problems with her ability to format posts.

    This happened when we made the main content area wider.

    Thank you

    #97226
    Mahesh
    Keymaster

    @catwingz: The problem is because the editor’s content width is defined by the theme so that is match the actual content width of the site. You have now customized the theme by increasing the content width through custom CSS. But the width of editor’s content stayed the same and caused the issue. If you would like to do this level of customization. I recommend you to use the child theme. You can find more details on creating child theme HERE then add the CSS to child theme’s style.css
    And for the editor’s content width, copy editor-style.css file to your child theme and edit and change line 7 to max-width: 860px;
    so it would look like following:

    html .mceContentBody {
        max-width: 860px;
    }

    Hope this helps.

    Regards,
    Mahesh

    #97256
    catwingz
    Participant

    Thanks @Mahesh, that is a huge help. Up until now she hasn’t needed a child theme, but this will make her very happy.

    #97263
    Mahesh
    Keymaster

    @catwingz: Glad to know. Thank you for your appreciation. If you like my support and Catch Flames theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-flames?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Make content area wider, right sidebar narrower’ is closed to new replies.