Topic: Admin Panel Fluid Layout.

This is a quick fix and I've probably missed a bit. But I needed to expand the layout of the admin panel as I was finding the small area a bit restrictive.

Anyways to enable fluid mode just install Chris's "Custom Admin CSS" plugin from Extend.

http://get-simple.info/extend/plugin/cu … in-css/15/

Then insert the following code under "Theme->Custom Admin CSS"

.wrapper{
width:99%;
}
.wrapper .nav{
width:99%;
}
.wrapper table {
width:99%;
}
form.manyinputs textarea {
width:99%;
}

#maincontent{
width:75%;
}
#sidebar{
width:24%;
}

and save, then refresh your page. Viola !!

Hope its of use to someone.

Mike....

Currently working on The Matrix Plugin...

Re: Admin Panel Fluid Layout.

Very useful, great tip! Thanks Mike.

Re: Admin Panel Fluid Layout.

Carlos wrote:

Very useful, great tip! Thanks Mike.

This item is a dead-end these days. Has it been pulled or moved?

Re: Admin Panel Fluid Layout.

i fixed the download - it's working now: http://get-simple.info/extend/plugin/cu … in-css/15/

- Chris
Thanks for using GetSimple! - Download

Please do not email me directly for help regarding GetSimple. Please post all your questions/problems in the forum!

Re: Admin Panel Fluid Layout.

Cheers, Chris...

Currently working on The Matrix Plugin...

Re: Admin Panel Fluid Layout.

Really nice idea, I added some little personal changes...

.wrapper{
width:99%;
}

.wrapper .nav{
width:99%;
}

.wrapper .nav li:first-child {
margin-left: 35px;
}

.wrapper table {
width:99%;
}

form.manyinputs textarea, textarea, form input.title {
width:99% !important;
}

#maincontent{
width:75%;
}

#sidebar{
width:24%;
}

.header h1 {
left: 35px;
}
Author of GetSimple 3's Finnish Language file

Re: Admin Panel Fluid Layout.

Thanks Mike and krisu, looking good on my end! Could come in handy for the netbook.

Re: Admin Panel Fluid Layout.

Could this be done, but only for the editor height? (so that the Save changes button is always visible for a minimum browser height)

Re: Admin Panel Fluid Layout.

Carlos wrote:

Could this be done, but only for the editor height? (so that the Save changes button is always visible for a minimum browser height)

There is an option for changing the height of the editor in gsconfig.php. I haven't tried it but it should work.

Re: Admin Panel Fluid Layout.

usmandgreat wrote:

There is an option for changing the height of the editor in gsconfig.php. I haven't tried it but it should work.

Yes, it works. Thanks, but already I knew that. :-)

I meant fluid height: it would (dynamically) change if the browser window is resized.