<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Comments for page &quot;Block In Fixed Position In Browser&quot;</title>
		<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser</link>
		<description>Posts in the discussion thread &quot;Block In Fixed Position In Browser&quot;</description>
				<copyright></copyright>
		<lastBuildDate>Mon, 20 Jul 2026 10:35:23 +0000</lastBuildDate>
		
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-2327961</guid>
				<title>(no title)</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-2327961</link>
				<description></description>
				<pubDate>Mon, 29 Jun 2015 23:52:36 +0000</pubDate>
				<wikidot:authorName>NoriMori</wikidot:authorName>				<wikidot:authorUserId>1222161</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I remember my old wiki used to have a feature where, when I opened the editor, a block just like this would appear at the top right corner, with a link to jump down to the editor. It didn't stay in a fixed position, but it looked very similar to this one. The wiki doesn't seem to have this anymore, for some reason&#8230; Does anyone know if it is possible to recreate this?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-1344663</guid>
				<title>CSS Columns</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-1344663</link>
				<description></description>
				<pubDate>Sat, 07 Jan 2012 09:31:32 +0000</pubDate>
				<wikidot:authorName>RobElliott</wikidot:authorName>				<wikidot:authorUserId>111301</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>An alternative and quite simple way to do this is to set up css columns, one of which simulates the sidebar.</p> <img src="http://community.wikidot.com/local--files/files/columns2.png" alt="columns2.png" class="image" /> <p>Make sure you turn off your side bar in your site manager. Then on your page or in your live template create a css module to specify the width etc of the columns.</p> <p>Then put your toc iinto one column inside a div and your content into the other column inside another div. The code looks like this::</p> <div class="code"> <pre><code>[[module css]] div.columnleft { float: left; padding: 0 10px 0 0; width:220px;} div.columnright { float: left; padding: 0 10px; width:500px;} [[/module]] [!-- This is the left column --] [[div class=&quot;columnleft&quot;]] [[toc]] Other elements can be put in your simulated sidebar in the same way as a standard sidebar. [[/div]] [!-- This is the right column --] [[div class=&quot;columnright&quot;]] +++ Section A Etiam vestibulum lorem ac ante eleifend adipiscing convallis arcu faucibus. Vestibulum a tellus tortor, in sollicitudin lectus. Mauris in metus purus, eu commodo mi. Morbi lacus augue, cursus ut mattis ac, bibendum ac risus. Suspendisse pretium, dui quis pharetra commodo, odio sem vestibulum mauris, in mollis augue justo vel massa. Donec varius erat a nunc adipiscing sit amet luctus mauris porta. +++ Section B Curabitur vulputate viverra odio, cursus molestie enim porttitor a. Morbi volutpat vulputate justo, commodo aliquam purus auctor vel. Pellentesque semper risus non erat vehicula tempus. +++ Section C Fusce porta imperdiet augue eget sollicitudin. +++ Section D Proin leo enim, semper semper luctus iaculis, venenatis et eros. Proin ut tristique metus. Donec placerat velit in lectus semper quis tristique velit fringilla. Sed in erat purus, non consectetur est. Pellentesque non dui eget ipsum pulvinar cursus. [[/div]]</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-1344648</guid>
				<title>Re: Fixed TOC via SideBar?</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-1344648</link>
				<description></description>
				<pubDate>Sat, 07 Jan 2012 08:23:17 +0000</pubDate>
				<wikidot:authorName>Helmut_pdorf</wikidot:authorName>				<wikidot:authorUserId>17609</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Sorry, for my long answer with the second by yourself build &quot;side bar&quot; menu..</p> <p>The easiest way is to include your code into the live &quot;_template&quot; of your category:<br /> let us say as an example your pages are in the &quot;_default&quot; category - create a live template for this category<br /> &quot;_template&quot; ( the starting underscore makes this page &quot;hidden&quot; - you have to create it in the url - the adress bar!)<br /> if your pages are in the category &quot;car:&quot; than the _template would name &quot;car:_template&quot; .<br /> .</p> <div class="code"> <pre><code>%%content%% [[div style=&quot;position:fixed; LEFT: 00pt; BOTTOM: 0pt; width: 190px; background: Ivory;&quot;]] [[collapsible show=&quot; + Table of Contents&quot; hide=&quot;- Table of Contents&quot;]] [[toc]] [[/collapsible]] [[/div]]</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-1344611</guid>
				<title>Re: Fixed TOC via SideBar?</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-1344611</link>
				<description></description>
				<pubDate>Sat, 07 Jan 2012 07:32:33 +0000</pubDate>
				<wikidot:authorName>Helmut_pdorf</wikidot:authorName>				<wikidot:authorUserId>17609</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You have to &quot;build&quot; your side bar inside the page category itself - as a part of the page..</p> <p>I did such trick on the genalogy-template (not yet finished) - i removed the side bar menu from the &quot;per.&quot; category in the site manager and copied all the nav:side content into the &quot;second cell&quot; of a big main table over the complete page<br /> The complete Template: <a href="http://genealogy-template.wikidot.com/per:_template" target="_blank">http://genealogy-template.wikidot.com/per:_template</a><br /> the right column alone: <a href="http://genealogy-template.wikidot.com/inc:per-right-column" target="_blank">http://genealogy-template.wikidot.com/inc:per-right-column</a></p> <p>and the result: <a href="http://genealogy-template.wikidot.com/per:1" target="_blank">Albert Einstein (1879-1955)</a></p> <p>now I can do all the toc or other staff depending on the page content -live- _template driven:</p> <div class="code"> <pre><code>[[table style=&quot;width:100%;border:1px solid silver;vertical-align:top;&quot;]] [[row]] [[cell style=&quot;border:0px solid silver;vertical-align:top;&quot;]] [[# Topofpage]] %%content%% ---- **Backlinks:** [[module Backlinks]] ---- [[/cell]] [[cell style=&quot;width:240px;border:1px solid silver;vertical-align:top;&quot;]] [[include inc:per-right-column]] [[/cell]] [[/row]] [[/table]] [[table style=&quot;width:100%;border:0px solid silver;text-align:right;&quot;]] [[row style=&quot;border:0px solid silver;vertical-align:bottom;&quot;]] [[cell style=&quot;border:0px solid silver;text-align:right;&quot;]] [#Topofpage - - &gt; Top of page] [[/cell]] [[/row]] [[/table]]</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-1344086</guid>
				<title>(no title)</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-1344086</link>
				<description></description>
				<pubDate>Fri, 06 Jan 2012 20:30:58 +0000</pubDate>
				<wikidot:authorName>Zag</wikidot:authorName>				<wikidot:authorUserId>60133</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You'll have to put that in your actual page rather than in the sidebar page. It will get the toc from the page it is on.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-1344074</guid>
				<title>Fixed TOC via SideBar?</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-1344074</link>
				<description></description>
				<pubDate>Fri, 06 Jan 2012 20:05:45 +0000</pubDate>
				<wikidot:authorName>quin2k</wikidot:authorName>				<wikidot:authorUserId>1230033</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, I'm trying to build off of this to try and get my side-bar to automatically populate a TOC for the page - but I've come up with a flaw. While it will properly update the links to jump where it is supposed to&#8230; it's pulling the titles from the sidebar page instead of the page it's on!</p> <p>Suggestions?</p> <p>Currently using&#8230;</p> <div class="code"> <pre><code>[[div style=&quot;position:fixed; LEFT: 00pt; BOTTOM: 0pt; width: 190px; background: Ivory;&quot;]] [[collapsible show=&quot; + Table of Contents&quot; hide=&quot;- Table of Contents&quot;]] [[toc]] [[/collapsible]] [[/div]]</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-564571</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-564571</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 14:09:45 +0000</pubDate>
				<wikidot:authorName>Brunhilda</wikidot:authorName>				<wikidot:authorUserId>91730</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You're welcome&#8230; I wouldn't have known about this if I hadn't spent three hours wondering why the hell June in TOC leads to July&#8230;. :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-564567</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-564567</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 14:05:57 +0000</pubDate>
				<wikidot:authorName>Helmutis_guest</wikidot:authorName>				<wikidot:authorUserId>29863</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks, Brunhilda, I have forgotten this&#8230;.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-564500</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-564500</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 12:46:48 +0000</pubDate>
				<wikidot:authorName>Brunhilda</wikidot:authorName>				<wikidot:authorUserId>91730</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>No, it won't be #toc5 for the 5th title, it will be #toc5 for the 6th title, since the first one has value #toc0&#8230;.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-564495</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-564495</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 12:37:32 +0000</pubDate>
				<wikidot:authorName>Helmutis_guest</wikidot:authorName>				<wikidot:authorUserId>29863</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Than you have to make the links manually ! &#8230;. ( mimicry a toc by using the &quot;anchors&quot; of the original toc&#8230;typically &#8230;wikidot.com/page_name#toc5 for the 5. entry)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-564436</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-564436</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 09:50:50 +0000</pubDate>
				<wikidot:authorName>HobStarCS</wikidot:authorName>				<wikidot:authorUserId>311458</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Looks good, but if it does not link to the item in question then it will not meet my needs. :(</p> <p>Thanks for trying. :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-564338</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-564338</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 06:20:23 +0000</pubDate>
				<wikidot:authorName>Helmutis_guest</wikidot:authorName>				<wikidot:authorUserId>29863</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Have a look on the snippet: <a href="http://snippets.wikidot.com/code:tocs" target="_blank">http://snippets.wikidot.com/code:tocs</a> !</p> <p>Could be this helps?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-561465</guid>
				<title>Re: TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-561465</link>
				<description></description>
				<pubDate>Fri, 14 Aug 2009 21:49:23 +0000</pubDate>
				<wikidot:authorName>HobStarCS</wikidot:authorName>				<wikidot:authorUserId>311458</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>ok, ta. :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-561271</guid>
				<title>TOC from another page</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-561271</link>
				<description></description>
				<pubDate>Fri, 14 Aug 2009 16:59:23 +0000</pubDate>
				<wikidot:authorName>Zag</wikidot:authorName>				<wikidot:authorUserId>60133</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have no idea if or how it could be done. This snippet is more about putting a fixed block on a page, and I suggested the toc just as an example that you might want to put in it. That's about the limit of what I know about toc's. sorry.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-561086</guid>
				<title>Any way to have a TOC from another page?</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-561086</link>
				<description></description>
				<pubDate>Fri, 14 Aug 2009 10:56:00 +0000</pubDate>
				<wikidot:authorName>HobStarCS</wikidot:authorName>				<wikidot:authorUserId>311458</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, I would like to display TOC's from multiple pages on just one.</p> <p>Meaning, Page 'A' displays the toc's from Page 'B' and 'C'</p> <p>I was trying to use;</p> <div class="code"> <pre><code>[[module PageTree root=&quot;pc-software-3D-Modeling&quot; depth=&quot;80&quot;]]</code></pre></div> <p>But as the TOC items on the other pages are NOT links, this does not work. (just displays nothing)<br /> <a href="http://hobstarcs.wikidot.com/pc-software">http://hobstarcs.wikidot.com/pc-software</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-301745</guid>
				<title>Invisible buttons...</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-301745</link>
				<description></description>
				<pubDate>Thu, 06 Nov 2008 13:47:50 +0000</pubDate>
				<wikidot:authorName>Brunhilda</wikidot:authorName>				<wikidot:authorUserId>91730</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><a href="http://snippets.wikidot.com/code:invisible-edit-sections-button-with-fixed-screen-position">http://snippets.wikidot.com/code:invisible-edit-sections-button-with-fixed-screen-position</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-300836</guid>
				<title>Re:</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-300836</link>
				<description></description>
				<pubDate>Wed, 05 Nov 2008 14:44:28 +0000</pubDate>
				<wikidot:authorName>Helmut_pdorf</wikidot:authorName>				<wikidot:authorUserId>17609</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>try using the fixed position dic in a permanent page like nav:top !</p> <div class="code"> <pre><code>[[div style=&quot;position:fixed; LEFT: 1pt; TOP: 13pt; background-color:#e7e9dc; text-align:center; z-index:50&quot;]] [[button edit style=&quot;font:8pt Verdana; color:black; background-color:#fffff8; border-style:double;&quot; text=&quot;_edit_&quot;]] [[/div]] [[div style=&quot;position:fixed; LEFT: 1pt; TOP: 23pt; background-color:#e7e9dc; text-align:center; z-index:50&quot;]] [[button edit-sections style=&quot;font:8pt Verdana; color:black; background-color:#fffff8; border-style:double&quot; text=&quot;_sections_&quot;]] [[/div]]</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-300719</guid>
				<title>(no title)</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-300719</link>
				<description></description>
				<pubDate>Wed, 05 Nov 2008 12:00:52 +0000</pubDate>
				<wikidot:authorName>Brunhilda</wikidot:authorName>				<wikidot:authorUserId>91730</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Is it possible to put fixed edit buttons in the top bar? I use pages without side bar&#8230;.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://snippets.wikidot.com/forum/t-32359#post-87767</guid>
				<title>Option to scroll a long TOC</title>
				<link>http://snippets.wikidot.com/forum/t-32359/block-in-fixed-position-in-browser#post-87767</link>
				<description></description>
				<pubDate>Mon, 07 Jan 2008 01:54:46 +0000</pubDate>
				<wikidot:authorName>Zag</wikidot:authorName>				<wikidot:authorUserId>60133</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks to RJScar, who put this comment in the thread in which I had originally asked for this solution.</p> <blockquote> <p>Thanks a lot, I'd been trying to do that for a long time!</p> <p>If the TOC is so long it gets out of the page, you can add &quot;overflow: scroll&quot; in the style definition.</p> <p>Best,<br /> Rafaël</p> </blockquote> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>