> When I add the link <<gotoTiddler>> within the site titile it creates
> a secondary search field underneath so two are showing, it also
> appears only on the left hand side of the tiddly layout. The other
> issue with this is when I type something into the search field it
> dissapears behind the links in my main menu which are below it.
The content in SiteTitle and SiteSubtitle are automatically rendered
twice in the PageTemplate, using the .headerForeground
and .headerShadow DIVs. This provides the 'drop shadow' to the title
text. However, as you have noted, it does not work well if the title
(or subtitle) contains anything other than a simple line of text.
Rather than adding the <<gotoTiddler>> content to the SiteTitle, you
should modifiy the PageTemplate to create a separate DIV, like this:
-------------
<div style='position:absolute;z-index:1;right:.5em;top:2em;'
macro='gotoTiddler liststyle:[[font-size:80%;width:100%;]]'></div>
-------------
You could also split this up into a few pieces to make the
configuration more flexible, as well as more readable, like this:
in PageTemplate add:
<span class='siteNav' refresh='content' tiddler='SiteNav'></span>
in StyleSheet, add:
.siteNav { position:absolute;z-index:1;right:.5em;top:2em; }
create SiteNav, containing:
<<gotoTiddler liststyle:[[font-size:80%;width:100%;]]>>
enjoy
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
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/tiddlywiki?hl=en.