side bar blues
is there any way to turn off the list of the pages on my site that sits on the side bar?....
1
person has this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?The following script, pasted into the page, will do it.
<script>
window.onload = function()
{
var sidebar = document.getElementById('sidebar');
sidebar.parentNode.removeChild(sidebar);
}
</script>
Caveats: If the viewer's browser has JavaScript turned on. You have to paste it into every page you want the sidebar to disappear on. The sidebar will appear for a moment before disappearing. I haven't extensively tested this code.
There may be a better way, but that’s the first thing I came up with.
Editorial: It seems to me that the philosophy behind jottit is to be the best solution for creating jottit style sites. It can’t be extensively customized, but it does what it does exceedingly well.
In other words, if you don’t want the sidebar, then perhaps jottit isn’t the best tool for the site you’re creating.
I’m amused
-
Inappropriate?Stick the following code at the top of each page that you want hidden:
<style>.app #sidebar { display: none; } .app #content { margin: 0 !important; }</style>
This hides the sidebar during display time but it remains visible when you're editing.
It'd be nice to have a site-wide stylesheet option...
Loading Profile...




