• I have WordPress 4.4.1 running Omega theme.

    A few days ago the page width of all my pages have shrinked and it almost seems like there is an invisible sidebar to the right or something.

    For example I can’t center the frontpage image: https://www.ingibjarni.com

    another example. On: https://www.ingibjarni.com/skarkali-trio/ the content should fill the page like it used to do.

    I’m not a programmer, I just have very limited WordPress skills. What do I do to get it back the way it used to be?

Viewing 3 replies - 1 through 3 (of 3 total)
  • To make the content full width put following code into your theme’s style.css

    .content {
        width: 100% !important;
        float: none !important;
    }

    .content has width 600px. You have to change that to width: 100%. This is why the content doesn’ t align at center.
    It is also floated left, this is also something not needed.

    Thread Starter ingibjarni

    (@ingibjarni)

    Thanks a lot! It worked ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Page width suddenly changed in Omega theme’ is closed to new replies.