How to make a transparent widget
-
Well, let’s start with your login box, and see if we can get it working on just that one… then the process will be the same for others.
If you use firebug, and inspect your login widget, you will see it has an id of
wp_sidebarlogin-6. So, we would need to create something like this in our child theme style.css file.#wp_sidebarlogin-6 {
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */
}Yes, you can add it to your custom css.
See this video regarding firebug: (you can thank me after you understand how to use it)
http://www.joshlobe.com/2011/10/using-mozilla-firebug-to-inspect-css-files/
Mod
Now it says your site is in maintenance mode for the next month, so it is really difficult to help.
I’ve already explained it. For your Polls widget, add this to your custom CSS box:
#polls-widget-3 {
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */
}Make sure to refresh your browser and clear the cache.
Where are you placing the code?
Viewing 10 posts - 1 through 10 (of 12 total)
- 1
- 2
- You must be logged in to reply to this topic.
