JW_00000 posted a photo:
This is an example of a customized Metabar in Konqueror. Read more about it in my blog post.
JW_00000 posted a photo:
An example of a customized Metabar in Konqueror (texts are in Dutch, but will be automatically translated according to your language settings in KDE).
Read more about it in my blog post.
JW_00000 posted a photo:
This image shows how a text shadow can be applied to provide a glow effect. The white text is here still readable on the very light background because the following CSS is applied to it:
li { text-shadow: 0px 0px 2px #000000;}
That code will add a black shadow with a size ("blur radius") of 2px to the text.
The header ("Openen met" = Open with) got the following CSS declaration:
.head { text-shadow: 1px 1px 3px #000000; }
This will add a black shadow with a blur radius of 3px to the text, 1px to the left and 1px to the bottom of the text.