Hi J, a lot can be accomplished with pure css
A media query allows to define styles if the browser width is below/above a 
certain value:

@media (max-width: 960px) {

.myclass {
width: 50px;
}

}

@media (min-width: 960px) {

.myclass {
width: 500px;
}

}

alternativelly, if media queries are not enough, there's the dynaview 
plugin that stores the browser-window width and height in state tiddlers 
(if you check the checkbox in the dynaview-plugin's config)
I use it in combination with the formulas plugin to reveal styles when the 
value stored is lower/higher than a certain value... and it's handy if one 
wants to set conditions based on the browser-width and height using the 
list widget

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cbc97aa6-659f-4554-8eb3-5d0f76ef3c24%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to