OMP 1.2 stable layout?

Hi @lilients,

We’re ditching the 3-column layout for a 2-column layout with the sidebar on the right. There’s only going to be one sidebar. But you can easily swap the positions of the content and sidebar columns with the following CSS:

@media(min-width: 992px) {
  .pkp_structure_sidebar {
    float: left;
  }
  .pkp_structure_main {
    float: right;
  }
  .pkp_structure_main:before {
    left: 300px;
  }
  .pkp_structure_main:after {
    left: 952px;
  }
}
@media(min-width: 1200px) {
  .pkp_structure_main:after {
    left: 1160px;
  }
}

You can overwrite the templates/frontend/components/primaryNavMenu.tpl to build your own primary navigation menu. Alternatively, you can build your own template and link to it in the header.tpl.

We’re also getting rid of the footer categories and social profile links management system for the footer. We felt these were too over-prescibed: not flexible enough to be widely useful and a lot of extra code for us to maintain. Instead, you’ll find a rich text editor under Settings > Website > Appearance > Press Page Footer. You can chuck HTML code such as lists of links in here or whatever content you’d like.

3 Likes