I wanted something different to replace the ajax animated gif (Drupal throbber) so here it is:

Also, see my post Change throbber.gif in Drupal for instructions on replacing throbber.gif without effecting core.

To replace core Drupal ajax animated gif (throbber.gif) add the following to your theme's CSS and put the replacement throbber.gif file in the images folder of your theme.

html.js input.form-autocomplete {
  background-image: url(images/throbber.gif);
}

Finally upgraded my LCD monitor to LGW2242T FLATRON Widescreen -- cannot get the colours right and IMHO it truly is not suited to professional graphics but MC rocks! As does the IDE, for super long lines of code :P

Top 5 Drupal Modules

  1. CCK - of course!
  2. Admin Menu - I've been using this since D5.x and it really changed my life.
  3. Image Cache (Image API, File Field, Image Field and Image Cache) - Really the only way to add consistent image content.
  4. FCKeditor (IMCE, Image Resize Filter, Better Formats and FCKeditor) - For the end user or client, why do they still get into trouble? 
  5. Google Analytics

Drupal is inherently pretty good for search placement. I've noticed after doing site conversions, most times placement improves, other times it improves dramatically. There are some simple steps to further SEO, while it may take some time to complete you will find the process worthwhile. Even if you plan no further efforts to for your SEO, you should at least consider completing the tasks set out by the SEO Checklist module.
 

File extension handling

Add Drupal file types to the Extensions.txt file so Dreamweaver knows how to handle them:

Documents and Settings -> [user] -> Application Data -> Adobe Dreamweaver -> Configuration

Edit: Extensions.txt To the first line add MODULE, PROFILE, INFO:

HTM,HTML,SHTM,SHTML, ... ,TXT,PHP,PHP3,PHP4,PHP5,MODULE,PROFILE,INFO,JSP,WML,TPL, ... ,MASTER: All Documents

To the PHP Files line add MODULE,PROFILE,INC like so:

Here it is, be sure to change the USER variable and make sure you irssi config is set up to to what you need.

to access type 'screen -x irc'

If you'd prefer not to have to type a password to execute commands as root with sudo

Edit the /etc/sudoers
#visudo
or
#vi /etc/sudoers

add a line for your user in this case mine is "chris"

chris ALL=(root) NOPASSWD: ALL

:qw
#

Firstly, the file may not be missing just hidden. If you're sure the file is missing or you're a Mac user then skip this step.

Your MMDocumentTypes.xml file should be in either of the following, depending on the version.

Attachment: 

Override theme_menu_item() (includes/menu.inc)

edit/create template.php in your themes dir.

<?php
function phptemplate_menu_item($mid, $children = '', $leaf = TRUE) {
  return
_phptemplate_callback('menu_item', array(
       
'leaf' => $leaf,
       
'mid' => $mid,
       
'children' => $children
   
));
}
?>

create a menu_item.tpl.php file

Syndicate content