Archive for November, 2008

Horizontal Marquee with jQuery

Wednesday, November 19th, 2008

See this page for more explanation

http://remysharp.com/2008/09/10/the-silky-smooth-marquee/

Float problem in IE

Wednesday, November 19th, 2008

One tips.. Put width attribute in CSS

read more here: http://articles.techrepublic.com.com/5100-10878_11-5164730.html

Want to remove language from node links?

Wednesday, November 19th, 2008

Try this module on the attachment..

http://drupal.org/node/242408#comment-945345

Access non-Drupal folder from Drupal Sites

Wednesday, November 12th, 2008

If you encounter this error:

Forbidden

You don't have permission to access /login/ on this server.

That means you haven’t add .htaccess to the folder. Just make .htaccess file and add this.


DirectoryIndex index.php index.shtml index.html


Theming Menu in Drupal 6

Friday, November 7th, 2008

now become easier !!

check this link

Path to Drupal Theme and Module

Friday, November 7th, 2008

Drupal Path to current theme

<?php
print '<img src="'. path_to_theme() .'/images/picture.jpg" />';
?>

Drupal Path to a theme

<?php
 drupal_get_path('module', $module_name);
?>

Drupal Path to a module

<?php
 drupal_get_path('theme', $theme_name);
?>

Theming Views 2 in Drupal 6

Thursday, November 6th, 2008

I found a simple tutorial for newbie.. !!!

Click here… I spend more than one hour to find out this.. Pity me !

Adding Custom Menu

Saturday, November 1st, 2008

Spending some time trying to find out this !

Sigh…

If you make additional menu and wants to put it in your theme, this is how to do it

&lt;?php print theme('links', menu_navigation_links('menu-machine-readable-name'), array('id' =&gt; 'menu_id', 'class' =&gt; 'menu_class')); ?&gt;