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 #2871922
Archive page width
Closed

Comments

  • andrewsgibson started the conversation

    Is there a way to set the width of archives pages (Categories, Tags, Author pages) and the Search results page to 900 pixels when there's no sidebar? And what code do I need to restrict the menu bar to 900 px as well so they align?

    I'm using Soledad Simple Blog.

    Thanks,

    Andrew

  •  2,492
    PenciDesign replied

    Hi,

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

    body.archive #main {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    Regards,
    PenciDesign.


  • andrewsgibson replied

    Thanks, that worked perfectly.

    Is there a way to set the width of the Home page to 900 pixels as well?

    Thanks,

    Andrew

  •  2,492
    PenciDesign replied

    Hi,

    Please add this CSS code for the home page:

    body.home .container {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    Regards,
    PenciDesign.


  • andrewsgibson replied

    Thanks, worked perfectly.