The Moon Tropica
Wednesday, March 1, 2006 8:35:31 PM
This is my latest piece of work. Created in PS using different textures and the almighty smudge tool. 

http://www.deviantart.com/view/29710383/
Wallpaper
http://www.deviantart.com/view/29754199/

http://www.deviantart.com/view/29710383/
Wallpaper
http://www.deviantart.com/view/29754199/
Site specific settings in Opera 9 TP2.
Tuesday, February 7, 2006 5:45:13 PM
In Opera 9 TP2 you can change the settings for any certain site that have something you wish to change. If you wish to re-style a website you can use 1 CSS file for that site. No more UserJS needed for that. For example, let us make some really simple modifications to google.com.
Open up your favorite code editor. Write this.
Save it as google.css. This css will just change the font, color and some hover effects on the links.
Now in Opera, right click on the page in google.com and choose Site preferences. Click on the Style tab and choose your google.css file. Restart Opera and see the few changes made on google.com.
Now this is really useful if some site uses annoying iframes only for ads. To remove just all iframes on that certain site you can write this in that CSS file.
If you know CSS, start the re-styling.
Some sites like deviantart.com have users that creates different themes for the site.
Open up your favorite code editor. Write this.
body,td,a,p,.h{font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif !important;}
a:link {
color: #36c;
text-decoration: none;
}
a:visited {
color: #039;
text-decoration: none;
}
a:hover {
color: #c60;
text-decoration: underline;
}
Save it as google.css. This css will just change the font, color and some hover effects on the links.
Now in Opera, right click on the page in google.com and choose Site preferences. Click on the Style tab and choose your google.css file. Restart Opera and see the few changes made on google.com.
Now this is really useful if some site uses annoying iframes only for ads. To remove just all iframes on that certain site you can write this in that CSS file.
iframe {
display: none;
}
If you know CSS, start the re-styling.
Some sites like deviantart.com have users that creates different themes for the site.Opera Customizing
-
The Opera wiki
All you need to know about Opera customizing.
-
UserJS.org
Lots of user javascripts.

