Hi ID, thanks for trying it out. The empty column on the left side of the default theme is for the secondary level navigation. If your page has only one level of navigation, or else you want to use the drop down navigation instead for the top navigation, you can create your own theme which has only one column. Have a look at this file:
https://code.google.com/p/gae-cms/source/browse/trunk/themes/Google%20Code/templates/Default.body Replacing the following code in it: <div class="bd yui3-g"> <div class="sd1 yui3-u-1-6"> {{ section|view:"GLOBAL, navigation, Navigation, expanding_hierarchy, 1, vertical"|safe }} {{ section|view:"LOCAL, side1, Container, default"|safe }} </div> <div class="mn yui3-u-5-6"> {{ main|safe }} </div> </div> with just: <div class="bd"> {{ main|safe }} </div> ought to do the trick. Also you can get a dropdown navigation by replacing the following code: {{ section|view:"GLOBAL, navigation, Navigation, nth_level_only, 0, horizontal"|safe }} with: {{ section|view:"GLOBAL, navigation, Navigation, dropdown, 0, horizontal"|safe }} Regards, Imran On Tuesday, October 9, 2012 1:14:32 PM UTC-4, ID wrote: > > I'm trying it out, seems quite interesting and clean. I have a question, > how can I resize or get rid of the empty space on left side? > > On Wednesday, June 13, 2012 12:06:59 AM UTC+8, GAE-CMS wrote: >> >> I am the creator of a brand new CMS called GAE-CMS<http://www.gae-cms.com>. >> It is based on Google App Engine written in Python 2.7. It is free and >> open source (GPL). It has been designed from the ground up for speed and >> usability. As well it is very easy for designers to modify every aspect of >> the theme and apply different themes to different sections of the website. >> It is developed in a very modular way with different types of content able >> to inherit from the base content class and define how it behaves and its >> views. I believe it is a fresh new take on CMSs and believe it could >> surpass some of the current great CMSs if enough developers get behind it. >> This is an open call to developers to check out our project, install it, >> use it and if you believe in it then contribute back and join our >> leadership team to help guide the vision of this project. Visit >> http://www.gae-cms.com for more information and access to the code. >> > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/HSjAXU7F1wIJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
