wildcats1369's blog

Disable horizontal bar in IE

Ive been working on a friend's website. So from the psd file I created an html template from it. Afterwards he told me that there is a horizontal scrollbar when the resolution is low. First I tried changing the layout but i just cant get rid of it even though all the contents are in the screen, then I tried putting a CSS code

                 .html, body {
                 overflow-x: hidden;
                 }

And the scrollbar is gone.

Programatically adding a Drupal 6 Node

Creating a drupal node programatically varies upon the setting of your drupal installation. Here is the basic way of creating a node via a script in Drupal 6.

			$node = (object) NULL;
			$node->type = '$NODE_TYPE'; // your node type
			$node->uid = '1'; // ID of the user
			$node->created=time();  // current time
			$node->body = $TEXT; // CONTENT	
			$node->title = $TITLE; // Title of the node			
			
			$node = node_submit($node);
			node_save($node);

Now lets define each line one by one

How to Reset or Change Microsoft Office 2007 Product License Key or Volume License Key

You may need to alter or change Microsoft Office 2007 (aka 2007 Microsoft Office System programs and suites) product license key or volume license key (VLK) which also known as serial number or CD key. You can modify or change product key for 2007 Microsoft Office programs or suites by first uninstall or remove Microsoft Office and then reinstalling the business productivity suite. However, you can follow the following steps in order to reset and change the Microsoft Office 2007 product serial key without the need to uninstall or reinstall 2007 Office system suites.

How to create a thermite reaction.

Who said that the rust under the hood of your car is a piece of trash? Try adding in some science in it and be ready for some crispy and sparkling fun. Wanna see how? Watch the video.

Warning: Don't try this INSIDE your home.

Views Gallery Drag and Drop Uploader

Visual Upload X is a module created to provide a drag and drop uploading method of uploading images for Views Gallery. The module is using POSTLET as its upload interface.

Features:

  • Drag and Drop uploading method
  • Images will automatically be related to the gallery selected
  • Be able to manage the titles and body description after upload
Syndicate content