You are not logged in.

  • »imvucodes« is a verified user
  • "imvucodes" started this thread

Posts: 130

Location: Interwebs

Occupation: Serving code snippets non stop.

  • Send private message

1

Monday, July 12th 2010, 2:36pm

Semi-Opacity Panels w/High Light Hover

This code makes all your panels opacity to 60. But you can change the opacity: filter:alpha(opacity=# of Strenght)
Also when the mose hover over each panel it gives it a little glow. Well hope you enjoy.

Source code

1
2
3
4
5
6
7
8
9
10
11
12
<style type="text/css">
#aboutme_panel, #contact_panel, #dev_panel, #wishlist_panel, #visitors_panel, #messages_panel, #tagcloud_panel, #stickers_panel, #collect_panel, #room_panel, #rankings_panel, #cool_panel, #gallery_panel, #friends_panel,	#streetteam_panel, #blog_panel, #music_panel, #rss_panel, #url_panel, #special_panel, #outfits_panel, #groups_panel, #video_panel, #updates_panel, #slideshow_panel, #badges_panel, .imvucodes_net {
opacity:0.6 !important;
filter:alpha(opacity=60) !important;
-moz-opacity:0.6 !important;
}
#aboutme_panel:hover, #contact_panel:hover, #dev_panel:hover, #wishlist_panel:hover, #visitors_panel:hover, #messages_panel:hover, #tagcloud_panel:hover, #stickers_panel:hover, #collect_panel:hover, #room_panel:hover, #rankings_panel:hover, #cool_panel:hover, #gallery_panel:hover, #friends_panel:hover,	#streetteam_panel:hover, #blog_panel:hover, #music_panel:hover, #rss_panel:hover, #url_panel:hover, #special_panel:hover, #outfits_panel:hover, #groups_panel:hover, #video_panel:hover, #updates_panel:hover, #slideshow_panel:hover, #badges_panel:hover {
opacity:0.9 !important;
filter:alpha(opacity=90) !important;
-moz-opacity:0.9 !important;
}
</style>

Similar threads

Rate this thread