I've been very successful in creating site-specific style sheets in Firefox (for windows) using the Stylish extension.
Now I'm trying to implement site-specific style sheets in Opera on the Zaurus.
In opera.ini I haveLocal CSS File=/home/QtPalmtop/opera/styles/pda.css
I created pda.css in that directory and added an @import url in it to import a site-specifc css file in the same directory.
@import url("tyrannazaurus-forum.css");
This is the contents of tyrannazaurus-forum.css (code taken directly from Stylish).
My intent is to remove the sidebar and extend the posts width when reading posts.
This code works perfect with Firefox.@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.tyrannozaurus.com/?q=node/"), url-prefix("http://www.tyrannozaurus.com/?q=comment/reply/") {
/* remove the sidebar */
#sidebar { display: none !important; }
/* change the width of posts */
.comment, .form-item { margin: 0px -160px 0px 0px !important; }
}
I think the @-moz (for mozilla) needs to be replaced with @-o (for opera),
but I have tried all kinds of combinations and nothing has worked.
If anyone has any info on how to use style sheets in Opera on the Zaurus, I would appreciate the help.
My OS setup is in my sig.
Thanks,
Doug