Okay
  Public Ticket #3699907
How to specify Boxed layout size?
Closed

Comments

  •  1
    Seb started the conversation

    Hi, I have searched the web for answers, but cannot find anywhere in the options where I can specify the boxed layout maximum pixel dimensions (as in the maximum content area before the boxed boarders take effect)

  •  8,837
    Tahir replied

    Hey Seb,

    You can adjust it using the CSS below

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (min-width: 691px) and (max-width: 999px) {
        body #boxed {
            width: 100% !important;
        }
    }

    Thanks


    ThemeNectar Support Team