Posts tagged ‘Firefox’

Google Wide Search Box for Firefox Stylish

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
before.png


After
after.png

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 }
}

Firefox Addon (Extension) for Windows Live Writer - Live Writerfox

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

About

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.

Transparent DIV SPAN for all browsers

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.