> is there a way for a tw to load different stylesheets depending on the
> users screen resolution?
>
You can use CSS media queries in your stylesheets to achieve this.
For example
@media all and (max-width: 960px) {
.tiddler .title {
font-size: 0.9em;
}
}
would change the size of the tiddler title only if the width of the
screen is less than 960px.
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.