Auto-nav Options Window

Permalink
Hello! I've been working on converting my first round of html to a Concrete5 theme and have been successful up until my attempt at adding a subnavigation within a subpage. For some reason, when attempting to add an auto-nav block, the window where options and settings should be ("Edit/Preview" window) is completely empty. Any help would be greatly appreciated. Please see attached screenshot for reference. Thanks!

1 Attachment

 
juliandale replied on at Permalink Reply
juliandale
Hi,

It looks like you have applied some generic CSS styling that has interfered with the styling needed for the Concrete5 admin screens. When specifying the CSS for your site, try to avoid using generic declarations such as:

a {}
p {}
h1 {}
div {}
form {}
etc...

Instead, use an ID or wrapper class around your body content and specify the CSS as a derivative of that class. For example, if you decided to wrap your site in an ID called 'container' then you can write your code and CSS something like this:

<body>
<div id="container">
  <div id="header"></div>
  <div id="main"></div>
  <div id="footer"></div>
</div>
</body>


<style>
#container a {}
#container p {}
#container h1 {}
#container div {}
#container form { }
</style>


That should stop your CSS interfering with the Concrete5 CSS, allowing you to view all of the tabs of the AutoNav editor window, and will probably fix a few other odd things that show up within the editor windows too.