Skip navigation.

Bits and Pieces

Opera tips, music, anime, my life experiences.

Posts tagged with "css"

Change the colour of selected text in Opera

, ,


There are two ways to do this;

Option 1: Custom CSS

/*
Name: Green on Black Selected Text
*/

::selection {
background: #000;
color: #7FFF00;
}



Option 2: Using Opera:Config

opera:config#Colors|SelectedBackground
opera:config#Colors|SelectedText

Option 1 allows you to make several variations and switch between them quickly, overwriting a sites preference. Option 2 is the least amount of work.

Highlighting visited images using css

,

Add one of these to your standard stylesheet. This one.

Add a green border around the visited image.

a:visited img {
border:solid 2px green !important;
}



Adds a transparent effect to the visited image.

a:visited img {
background: transparent !important;
opacity: 0.2 !important;
}

Stylish Clone for Opera

, , , ...

The stylish extention for firefox provides an easy way to manage, search for and apply user stylesheets for pages this is my attempt to provide similar funtionality in opera.



Read more...