Firefox Tip: How To Change The Default Home Page LocationJuly 14th, 2007 This question was posed by a visitor of this site. Here is how you can change the default home page location in Firefox and everything you can do with it.
phpBB Auction Module Vulnerable To File Inclusion ExploitMay 3rd, 2006 Input passed to the "phpbb_root_path" parameter in "auction/auction_common.php" isn't properly verified, before it is used to include files. This can be exploited to include arbitrary files from external and local resources.
How To Get Free 30Gigs.Com Email Account (Without Invitation)November 29th, 2005 30Gigs.com is an invitation-only email service which offers a whopping 30 Gigabytes of storage for your email. As a reference GMail currently offers around 2.5 GB storage.
Cross-Site Scripting Vulnerability in Apache mod_imap ModuleDecember 16th, 2005 A cross-site scripting (XSS) vulnerability has been discovered in the Apache httpd server's mod_imap module which allows remote attackers to inject arbitrary web script or HTML via the Referer when using image maps. Input passed to the image map "Referer" directive in "mod_imap" isn't properly sanitised before being returned to the user.
How to track Average CPU Load and Disk Activity under LinuxSeptember 19th, 2009 For any System Admin working in Linux it's imperative to know how to maintain a better balance in input/output load between physical disks.They can change the system configuration to generate better input/output load between physical disks. There is a simple command for monitoring system input/output device loading in Linux by observing the time the devices are active in relation to their average transfer rates.
My Simple Goals for Simple ThoughtsJune 6th, 2006 What is my agenda for Simple Thoughts blog? What are my goals?
My goal is to provide accurate and quality information on java and web technologies. It includes providing code samples, software, wordpress plugins, software reviews, news and views, architectural discussions and much more.
How To Turn off Auto-Complete for Credit Card InputOctober 21st, 2005 This tip comes from Pete Freitag:
Always, always set autocomplete="off" in the input tag. For example:
<input type="text" name="cc" autocomplete="off" /&rt;
Otherwise, if people have the form completion feature turned on their credit card number will be stored in plain text somewhere on the computer (in the registry, or elsewhere).
Java Runtime.Exec() GuideJuly 19th, 2007 Everything you ever wanted to know and should know about Java Runtime.exec(). This old but still golden article is an excellent guide to using Runtime.exec().
Taragana's Del.icio.us mp3 Player WordPress PluginJanuary 4th, 2006 Overview
This plugin makes any mp3 links (in post or page or any other location in your blog) playable directly on your webpage. In addition, your visitors will have the opportunity to easily tag and post the mp3 link to del.icio.us.
Translator Plugin Gold Languages Supported MatrixJune 20th, 2007 This is the full matrix of translations supported by Angsuman's Translator Plugin Gold. Notes:
Green and Yellow indicates that the language combination is supported.
Computer Hardware Recommendations (India)October 15th, 2005 With my experience and yours I want to compile a list of safe and reliable computer hardware to use to buy / create / maintain your computer and peripherals like printers, UPS etc. This is a work-in-progress.
Xoops CMS SQL Injection Vulnerability ReportedJune 29th, 2006 KeyCoder has discovered a vulnerability in the MyAds module for Xoops, which can be exploited by malicious people to conduct SQL injection attacks. Input passed to the "lid" parameter in annonces-p-f.php isn't properly sanitised before being used in a SQL query.
Translator Plugin Pro Languages Supported MatrixJune 20th, 2007 This is the full matrix of translations supported by Angsuman's Translator Plugin Pro. Notes:
Green, Gold and Yellow indicates that the language combination is supported.
WordPress 2.0/1.5.x Hack: How to trim the fat resource hogging Admin DashBoardMarch 19th, 2005 Drop in replacement for resource hogging Admin DashBoard in WordPress 2.0/1.5.x
Bumptop Review: Complete Features of an Amazing 3-D Desktop UnveiledApril 7th, 2009 Bumptop, after being presented in TED 2007, dived into serious technological improvements until recently they came up with their 13th beta version which is stable and working perfectly with some of the coolest features available. Bumptop is a 3D desktop application which is meant to make your desktop operations (dragging, resizing, dropping, e-mailing, printing etc) fun and intuitive.
July 19th, 2006 at 10:02 pm
what about aligning them both at the middle vertically?
July 27th, 2006 at 11:44 pm
align=absmiddle is deprecated.
Can anyone explain why this behaviour happens, and why position: absolute solves it?
I’m constantly coming across CSS problems but the solutions don’t leave me any the wiser
August 8th, 2006 at 12:07 pm
Kat: This is probably due to the “image baseline” issue, where there is whitespace at the bottom of an image. Since images are inline objects, they sit on the baseline and not at the bottom of the containing block. Changing the style to “display: block;” would also work in an example like this.
November 21st, 2006 at 4:20 pm
Ive been trying this and ive figured out that puting ur elements in a table, each in a différent cell is doing the alignment very well.
Cause playing wit absolute positioning in a table can end up really messy.
( normal textbox is setting height and text size from my CSS style sheet )
January 5th, 2007 at 9:38 pm
using vertical-align: text-bottom is the best way to achieve the desired effect
February 1st, 2007 at 9:25 am
Bonjour,
Sous IE6, le bouton Go est 1 pixel au-dessus du input
Tout le monde le voit
June 28th, 2007 at 12:43 am
Fantastic - I’ve used this to align PayPal shopping cart buttons so they don’t affect the page layout below them. It’s a problem with PayPal that has been bugging me for ages! Thanks.
November 19th, 2007 at 2:05 am
Bonjour, you can solve the 1 pixel problem easily.
Complete Code:
November 19th, 2007 at 2:10 am
asp:ImageButton ID=\
May 7th, 2008 at 6:55 am
Works a charm!
May 16th, 2008 at 11:08 pm
This has been a booger…
Didn’t work for me.
But I did use style=”vertical-align: middle” which worked like a charm.
November 10th, 2008 at 10:04 am
Put the imagebutton before the textbox and in the css, set
display:blockandfloat:rightJanuary 22nd, 2009 at 8:35 pm
Sorry gus, where are the code?
I have a text and a button adjacent to each other, the IE and Firefox refuses to work on one set of code.
February 13th, 2009 at 8:13 pm
Using the technique used in this article (style=”position: absolute”) does not work in safari. However, style=”vertical-align: middle” DOES work. So use that instead.
September 12th, 2009 at 6:49 pm
I tried all the options, and I ended up going with vertical-align: middle. But, I had to put the image in a separate td. And, it looks great in IE, slightly low in Firefox, and pretty low in Chrome, but better than it used to be before I found this article. Using position: absolute required that I use a margin-left on the next thing to the right to allow space, so that wasn’t good. I still don’t think this is the 100% solution for all browsers, at least the 3 I tested, IE, FF, and Chrome.