<div dir="ltr"><div class="gmail_default" style="font-size:small">Sorry to be so dense, but what do you mean by "hack to the tmpl file"? </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 1:09 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>
> It's not just ONE page where I need to disable the SideBar, it's<br>
> any page named "EditMessages" regardless of Group.<br>
<br>
</span>pub/css/Name.css will be used for all pages of wiki group called<br>
'Name', so that would not help you.<br>
Instead try add in config.phpsomething like this:<br>
<br>
$pagename = ResolvePageName($pagename);<br>
$name =  PageVar($pagename,'$Name');<br>
$group = PageVar($pagename,'$Group');<br>
if ($name=='EditMessages')<br>
$HTMLStylesFmt['skinwidth'] = "<br>
<span class="">  #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>
</span>";<br>
<br>
so you do not need a css file. $HTMLStylesFmt gets put into the HTML<br>
head. You still need the hack to the tmpl file for this to work!<br>
<br>
<br>
cheers,<br>
 Hans<br>
<br>
</blockquote></div><br></div>