Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2868283
Single post main column width
Closed

Comments

  • andrewsgibson started the conversation

    Is there a way of setting the main column in a single post to 900 px wide? Currently it's smaller than that. I'm using the Simple Blog layout and the single post has one sidebar on the right. Would also be helpful to know if I can change the width of the sidebar as well.

    Thanks,

    Andrew

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    @media only screen and (min-width: 961px) {
        .container.penci_sidebar #main {
            min-width: 900px;
            padding-right: 50px;
        }
        .penci-sidebar-content {
            max-width: 270px;
        }
    }

    Regards,
    PenciDesign.


  • andrewsgibson replied

    Thanks, worked perfectly!