On Feb 15, 5:20 pm, techwriter_mjs <[email protected]> wrote:
> I'd like to make the font bigger for the tiddler name of a tiddler
> when it's viewed.
>
> I'm using Firebug, and have found that the element is the "title"
> class, in the "tiddler" class, in the "tiddlerDisplay" DIV tag (which
> is in th e "displayArea" div. And when I traced another tiddler, I
> found that up the line there was a ViewTemplate referenced, which I
> don't seem to have. (I'm using the MochaTheme as my starting point.)
The ViewTemplate is a shadow tiddler. TiddlyWikis have a set of shadow
tiddlers that are used to define the layout and to some extent the
functionality that you use in the TW. These shadow tiddlers can be
over written and customised at anytime.
You should be able to access the shadow tiddlers through the timeline
by selecting the more tab and then the shadows tab.
In here you will see the ViewTemplate tiddler that defines the HTML
used to display the tiddlers in the view mode.
>
> But so far, I haven't found how to change the font size/color of the
> tiddler name when the tiddler is viewed. Any suggestions (either the
> answer :-), or about how to use Firebug more effectively/efficiently
> to figure things like this out)?
You can change the styles by adding content to a StyleSheet tiddler
(either edit the current stylesheet shadow tiddler or create a new
tiddler called StyleSheet). To change the size of the title text you
can use some CSS like this:
.title {
font-size: 2.5em;
color: red;
etc
}
Hope that helps,
Colm
--
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.