Posts tagged ‘Browsers’

Internet Explorer 8 Beta 2 expected in August

Internet Explorer 8 BetaWith the entire netizen community going ga-ga over announcements of Firefox 3 release and checking out the release candidates, everybody seemed to have missed out the news from Micro$oft last week about their next disaster in the line. It seems Ballmer and his gang will burden us with next beta release of Internet Explorer 8 this August. For now IE 8 looks very much similar to IE 7 and the major changes or additions would be that Micro$oft would be trying to adhere to standards more than what it has been doing all this time. This would also make IE 8 incompatible with the pages which were specifically coded for non-standard versions of previous IE. IE 8 also would introduce us to Web Slices which is somewhat similar to Active Desktop. We can also expect Micro$oft to plug many vulnerabilities and introduce many in this upcoming release.

I am certainly not very anxious for this release. For now Firefox seems to take care of my browsing requirements.

Zemanta Pixie

Multiple Row Bookmarks Toolbar in Firefox

One of the features that got attention was the bookmarks management in Firefox 3. Lately I have had the need to bookmark many of the links in my bookmarks toolbar. With the favicon displayed next to the side, it was pleasing and eye-catching. But the space was restricted and the links started to overflow the given width. So little googling to increase the height of my bookmarks toolbar brought me to MozillaZine (which I should have done before going to Google). This is how you go about it….

  1. Go to Firefox’s Profile directory ( Press [Win]+[R], and type “%APPDATA%” to go to your apps directory and you will find a directory called Mozilla and then navigate to your profile directory inside)
  2. In chrome folder, there might be a file called “userChrome.css“. If not you might have a example file and even if that is not there then create one using notepad.
  3. Inside type the following based on which version of Firefox you are running.  Please change the height variable according to your needs. 54px worked out for me. Then save the file and restart Firefox to have as much bookmarks as you want in your toolbar.

For Firefox 2

/* Multi-row bookmarks toolbar */
#bookmarks-ptf {display:block !important;}
#bookmarks-ptf toolbarseparator {display:inline !important;}

and sometimes you might need to add this also

/* Sometimes you may need this */
#PersonalToolbar {max-height: none !important;}

For Firefox 3 (this worked out for me)

/* Multi-row bookmarks toolbar for Fx3b5pre*/
#bookmarksBarContent
{display:block !important;}
.places-toolbar-items
{display:block !important;
height: 54px !important;
overflow-y:auto !important;}
#bookmarksBarContent toolbarseparator
{display:inline !important;}
#bookmarksBarContent .bookmark-item
{visibility: visible !important;}
.chevron {height: 0px !important;}

Zemanta Pixie

Disable Auto Virus Scanning in Firefox

After I switched over to Firefox 3, I noticed that my Firefox used to freeze whenever I was downloading or to be more precise whenever a huge download finished. After few spending some time with the task manager and Google, I came to find that the culprit was the built-in feature of Firefox which scanned the downloads using the already installed anti-virus application in my system. Even though this feature is a good one, in my humble opinion its a drag for somebody who downloads in and out daily. It could be useful feature for a novice or my grandma if she ever wanted to use a computer but not certainly to me. I believe any person who spends more than an hour over the Internet daily would be sensible enough to have a anti-virus application running and update it frequently.  Your own anti-virus application should be able to take care of it instead of the browser taking the load.

So after spending some time with Google, I got lead to gHacks who had a detailed article on it. So here is how you disable this feature, type “about:config” in your Firefox’s address bar and run a search filter for browser.download.manager.scanWhenDone and change the parameter value to false which will disable the automatic scanning.

via [gHacks]

Zemanta Pixie