• Hello,
    i have an issue with my website layout, while it uses a “boxed layout”,
    since some update i have seen that a part of a page has broken and is displayed full width. Anyone can help me to fix it? Maybe with a css code to paste into the additional css field?

    thank you
    Andreas

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try adding a custom CSS as a temporary solution:

    div#content {
        max-width: 1220px;
        margin: 0 auto;
    }

    Also, what did you update that caused these errors?

    Thread Starter andreasyeah

    (@andreasyeah)

    Hi Liz!

    thank you a lot :), it fixed the issue for the desktop version, but unfortunately not for the mobile…any tips how to solve it also here?

    I am still trying to figure it out what caused the issue.

    Add width: 90% just to give mobile a little margin on the sides.

    div#content {
        max-width: 1220px;
        margin: 0 auto;
        width: 90%;
    }

    Again, this just a temporary solution, I recommend finding the root cause of the problem so we can have a better solution.

    Also, may I know your WP theme?

    And, you can also try to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable them one by one to identify the source of your troubles.

    Thread Starter andreasyeah

    (@andreasyeah)

    The theme is Corify, but it was heavily customized, it is not recommended to disable it ??

    thanks anyways for your help Liz ??
    I appreciate it

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘boxed layout issue’ is closed to new replies.