Mattias Area

Subscribe to RSS feed

Opera on Ubuntu

, ,


Click on image for fullscreen png.

Just showing my layout. Doesn't get better than this. wink
Candido Metacity on screen.

The Moon Tropica

This is my latest piece of work. Created in PS using different textures and the almighty smudge tool. smile


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

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

Site specific settings in Opera 9 TP2.

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.
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. smile Some sites like deviantart.com have users that creates different themes for the site.