Indeed - nicely done, Wolfgang!
> I didn't know there was so many themes out there.
Well, this includes not only complete themes, but also "simple"
StyleSheet customizations (e.g. from my DevPad, which I don't recommend
anyone use).
> One thing I noticed, you should put a
> <html><div style="clear:both"></div></html>
> somewhere after your float left columns. I will make the tabs enclose
> the tab contents better I think.
Personally, I prefer using "overflow: auto;" on the respective parent
container - adding an extra element for this is so ugly...
-- F.
It's ancient, not polished, and not extensively tested.
Nevertheless, it might be useful as inspiration/reference for minor
modifications.
>> Personally, I prefer using "overflow: auto;" on the respective parent
>> container - adding an extra element for this is so ugly...
>
> Hmm.., tried this too. However, I didn't mentioned any change ..so I
> guess, didn't understood how to implement your suggestion completely?
Here's an example of the structure:
{{parentContainer{
{{floatedColumn{
[contents]
}}}
{{floatedColumn{
[contents]
}}}
}}}
... and the accompanying CSS code:
.parentContainer {
overflow: auto; /* conain floats */
}
.floatedColumn {
float: left;
}
In your case, the parent container's class is "tabContents".
HTH.
-- F.
I'm honored!
-- F.
Looks like it's caused by "clear: both;" on #tiddlerDisplay.
However, removing that might have unintended consequences...
-- F.
Within your <<tiddler>> macro call, you are trying to access a slice
from the SiteTitle tiddler.
I don't think you can use the [[tiddler##section]] syntax there though.
Try evaluated parameters instead:
<<tiddler
[[PageTemplate]]
with:{{store.getTiddlerText("SiteTitle##Changing")}}
>>
HTH.
-- F.
Could you create a simple demo (testcase) for this so I can have a look?
-- F.
Not exactly a minimal testcase, but anyway...
This won't work:
<span
class='siteTitle'
refresh='content'
tiddler='SiteTitle##Change'>
</span>
The tiddler attribute here doesn't support slices/sections.
Neither will this:
<span
class='siteTitle'
refresh='content'
tiddler=<<tiddler ShowPopup with: "Themes" "Descending" "" ""
"30em" "">>>
</span>
You can't invoke a macro like that.
Normally you'd use the macro attribute (macro="macroName parameter"),
but that won't work with <<tiddler>>.
Instead, rename your current [[SiteTitle]] to something like
[[CustomTitles]], then use the following in [[SiteTitle]]:
<<tiddler
[[templateTiddler]]
with:{{store.getTiddlerText("CustomTitles##Changing")}}
>>
(You'll have to adjust "templateTiddler", of course.)
HTH.
-- F.