Goran: project formats don't seem to work

  • Unknown's avatar

    Hi there!

    I am trying to get rid of the sidebar in the Projects. I’ve tried changing formats (standard, aside, image…) but they all look the same. (BTW, “Preview Changes” doesn’t work in Projects editor, even after I reseted it in the settings as per Support directions).

    I’ve also tried to erase the sidebar using CSS, but I haven’t been able.

    Any brilliant idea?

    I’d be more than thankful!

    Cheers, M

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To explain myself better, what I am trying to achieve here is a project display formatted like a Full Width Page. So just getting rid of the sidebar through ‘float: none’ or ‘display: none’ just wouldn’t work.

  • Unknown's avatar

    This should work only for your portfolio page but let me know if it’s messing up anywhere else:

    .post-type-archive-jetpack-portfolio.archive #secondary {
      display:none;
    }
    
    .post-type-archive-jetpack-portfolio.archive #primary {
      margin:0;
      padding:72px 72px 0 72px;
      width:100%;
    }
  • Unknown's avatar

    Wow, wow, wow! It did work, apparently, halllule, thank you very much……. BUT, that is not the page I need to change. ):

    The pages I need this way are the individual projects pages, for example this one.

    Is there still hope?

  • Unknown's avatar

    Yes it looks like you just need to change the first class it targets to the single version, the end result should look something like this:

    .single-jetpack-portfolio #secondary {
      display:none;
    }
    
    .single-jetpack-portfolio #primary {
      margin:0;
      padding:72px 72px 0 72px;
      width:100%;
    }
  • Unknown's avatar

    That’s just perfect. Thank you SO much, hallluke! (:

  • The topic ‘Goran: project formats don't seem to work’ is closed to new replies.