<div dir="ltr"><div class="gmail_default" style="font-size:small">Thank You Hans! That's close. But I see my description wasn't entirely accurate. It's not just ONE page where I need to disable the SideBar, it's any page named "EditMessages" regardless of Group. So, maybe I can create just a PageName.css file with those changes? I'll go experiment.</div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 14, 2015 at 12:52 PM, Hans Bracker <span dir="ltr"><<a href="mailto:design@softflow.co.uk" target="_blank">design@softflow.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
> I've been happily using pmwiki & the notsosimple skin for several<br>
> years. But I've run into a problem and I'm not skilled enough with<br>
> CSS or pmwiki to find the solution. Is anyone here able to help? You<br>
> can reply off-list to keep down the noise if you prefer.<br>
<br>
> The issue is that the notsosimple skin has a fixed width of about<br>
> 900px. The SideBar then consumes 160px of that width on every page.<br>
> But I now have a page where I need more width and I'd like the<br>
> SideBar to collapse/disappear on that page and only that page. I<br>
> found a reference to (:noleft:) but it's not working on my installation.<br>
<br>
</span>you would need to edit the notsosimple.tmpl file.<br>
You could try this:<br>
<br>
swap these lines in the tmpl file:<br>
 <!--HeaderText--><br>
 <link rel='stylesheet' title="(NotSo) Simple" href='$SkinDirUrl/notsosimple.css' type='text/css' /><br>
<br>
The tmpl file is also missing markup for (:noleft:) to work, but since<br>
you want to change width for one specific page, you could change some<br>
css rules via a Group.PageName.css  file (name of Group and page for<br>
which you want css changes) in the pub/css/ folder.<br>
Create such file and add to it something like this:<br>
<br>
#header, #main { width: 1200px; } /*set your page width*/<br>
#content { width: 1150px; }    /*adjust main div width*/<br>
#wikitext { width: 1100px }  /*adjust wikitext div width*/<br>
#sidebar { display: none; }<br>
<br>
the reason you need to change the tmpl file is that such a page<br>
specific css file gets loaded after the skin's csss file, so the rules<br>
set by the skin will get overridden by your pub/css/Group.Page.css file<br>
<br>
Best regards,<br>
 Hans<br>
<br>
</blockquote></div><br></div>