22nd January 2007, 04:52 am
Sometimes Google’s search box is not enough as a size. So I decided to add a simple CSS class to the textbox to display wider and clearer.To add some css style sheets to sites in Firefox, there is a powerful addon called stylish. So a simple stylish css code can provide that change. As a result Google search box becomes wider and with font colour red. It is optimized for wide screens width sized 1280.
Before

After
You can install it from UserStyles.org or just copy the code to your stylish add-on. You need to have either GreaseMonkey or Stylish add-ons installed on Firefox
@namespace url(http://www.w3.org/1999/xhtml);
/*Coded by Can Erten */
@-moz-document url-prefix(http://www.google.)
{
[name="q"] {width:925px; font-size:14pt!important;
color:red!important; font-weight:bold!important }
}
19th August 2006, 04:20 am
Blog it from Windows Live Writer.
Windows Live Writer is a new desktop application for composing blog posts to your blog service.
Usage
Currently the addon posts a page link or selected text to Windows Live Writer. You can access it from the context (right click) menu or the main menu.
To use it you need to have Windows Live Writer installed on your machine.
Screenshots

Download Firefox Extension
From Mozilla Add-ons Site - Live Writerfox
Currently it is pending for aproval on firefox site, you can download from the link below.
It is now available on firefox site as well.
From my Site
Install Live Writerfox or
Changelog
v0.4 (2008-06-21)
Firefox 3.0 Support
v0.3 (2006-10-25)
Added Firefox 2.0 Support
v0.2 (2006-08-27)
Added toolbar button Blog It
URL issue has been fixed
Removed extra double-quotes
v0.1 (2006-08-19) - Initial Stable Version.
Blog a page.
Blog selected text.
16th July 2006, 07:17 pm
To make an HTML element transparent. Just use these css elements in your css class. filter, moz-opacity, opacity.
Internet Explorer uses filter and firefox uses moz-opacity.
.transparent
{
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
<div class="transparent">A transparent div.
</div>
The opacity value changes from 0 to 1.