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 #1955725
Make single portfolio boxed
Closed

Comments

  • maartendc started the conversation

    Hi,

    I would like to have my whole webiste in boxed layout (like my homepage). How can I do this for the singe portfoilio pages?

    Thanks

  •  501
    Penci replied

    Hi,

    Please go to Customize > Addtional CSS then add custom css to do that:

    #page.site {
        transform: none;
        background: #fff;
        max-width: 1400px;
        display: block;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: 0 5px 8px rgba(0,0,0,0.2);
        -webkit-box-shadow: 0 5px 8px rgba(0,0,0,0.2);
        -moz-box-shadow: 0 5px 8px rgba(0,0,0,0.2);
        background-repeat: repeat;
        background-attachment: fixed;
        background-size: cover;
    }
    #page.site .site-header {
        max-width: 1400px;
    }

    Best Regards,

    PenciDesign