<?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>Might be a simple question.</title>
		<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question</link>
		<description>Posts in the discussion thread &quot;Might be a simple question.&quot; - Modifying the text contents of #extra-div in the header.</description>
				<copyright></copyright>
		<lastBuildDate></lastBuildDate>
		
					<item>
				<guid>http://community.wikidot.com/forum/t-56136#post-154806</guid>
				<title>Re: Might be a simple question.</title>
				<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question#post-154806</link>
				<description></description>
				<pubDate>Tue, 29 Apr 2008 20:28:23 +0000</pubDate>
				<wikidot:authorName>AoiMasamune</wikidot:authorName>				<wikidot:authorUserId>39120</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>It seems to me the technique could be easily adapted to play an .Swf file or some other type of media using iframe or embed.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://community.wikidot.com/forum/t-56136#post-154690</guid>
				<title>Re: Might be a simple question.</title>
				<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question#post-154690</link>
				<description></description>
				<pubDate>Tue, 29 Apr 2008 17:35:26 +0000</pubDate>
				<wikidot:authorName>Stephen Kay</wikidot:authorName>				<wikidot:authorUserId>104076</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I see - thanks, but I guess you're not actually including some other external content that way…</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://community.wikidot.com/forum/t-56136#post-154150</guid>
				<title>Re: Might be a simple question.</title>
				<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question#post-154150</link>
				<description></description>
				<pubDate>Mon, 28 Apr 2008 21:31:03 +0000</pubDate>
				<wikidot:authorName>Craig Macomber</wikidot:authorName>				<wikidot:authorUserId>28020</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>As far as bread crumbs, you can use page parenthood to have them generated automatically. This system is used for the how to pages. Take a look at the top of a random how to page: <a href="http://community.wikidot.com/howto:using-ratings">using-ratings</a></p> <p>Just set the page's parent. (It is set through the options button in the lower right)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://community.wikidot.com/forum/t-56136#post-154113</guid>
				<title>Re: Might be a simple question.</title>
				<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question#post-154113</link>
				<description></description>
				<pubDate>Mon, 28 Apr 2008 20:46:46 +0000</pubDate>
				<wikidot:authorName>AoiMasamune</wikidot:authorName>				<wikidot:authorUserId>39120</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Oh I got it. In case anyone else is wondering, you can define a div in the sidebar or page content, and position it with position:absolute; and put it wherever you want. Combine that with a predefined class and it works just fine.</p> <p>Example:</p> <p>Wiki Code -</p> <div class="code"> <pre> <code>[[div class="randomclass"]] [[[link-to-somewhere | Somewhere]]] &gt; [[[link-to-somewhere-else | Somewhere Else]]] [[/div]]</code> </pre></div> <p>CSS -</p> <div class="code"> <pre> <code>.randomclass{ position:absolute; top: 0px; left: 0px; z-index:150; /*make sure it's visible above everything else*/ color:#000; background-color:#fff; border-bottom:1px solid silver; }</code> </pre></div> <p>That worked for me.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://community.wikidot.com/forum/t-56136#post-154028</guid>
				<title>Re: Might be a simple question.</title>
				<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question#post-154028</link>
				<description></description>
				<pubDate>Mon, 28 Apr 2008 19:10:19 +0000</pubDate>
				<wikidot:authorName>Stephen Kay</wikidot:authorName>				<wikidot:authorUserId>104076</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Good question, I'm sorry I cannot solve it for you, but I am interested in the answer myself. I would like to insert my own top menu bar, generated separately, for example (perhaps using flash) - and insert it in the same place the other one normally is, at the top of each page in the header.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://community.wikidot.com/forum/t-56136#post-153639</guid>
				<title>Might be a simple question.</title>
				<link>http://community.wikidot.com/forum/t-56136/might-be-a-simple-question#post-153639</link>
				<description></description>
				<pubDate>Mon, 28 Apr 2008 06:24:55 +0000</pubDate>
				<wikidot:authorName>AoiMasamune</wikidot:authorName>				<wikidot:authorUserId>39120</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A friend of mine is a graphics designer and she decided she wanted to play with my CSS theme a bit after seeing what I had come up with. Well she drafted a really neat design that totally blew me away. I'm really excited about implementing it. Theres a catch though. (Isn't there always?)</p> <p>Part of the design she put together has something similiar to breadcrumbs at the very top of the page, above the logo and login status div. So my question is, how in the world would I pull that off?</p> <p>I was thinking about doing some complicated hack involving using #header-extra-div2 and the :content tag, which would contain the breadcrumbs since I can't actively edit divs in the header.</p> <p>The easier way would be to define a div in the sidebar and place it with position:absolute; and building the rest of the theme around it by manipulating the margins of the rest of the elements in the header and somehow using include to get the contents up there to seem dynamic, but still can't ponder out exactly how I would do it.</p> <p>So the easiest way I can think of would be to just leave a big empty gap at the top where the breadcrumbs element would go, and creating the div to put up there on each of the pages that would use it. Which is very not-elegant. Even if I predefine the class for the div.</p> <p>Am I missing something obvious here? I hope so.</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>