Horizontal Marquee with jQuery
Wednesday, November 19th, 2008See this page for more explanation
See this page for more explanation
One tips.. Put width attribute in CSS
read more here: http://articles.techrepublic.com.com/5100-10878_11-5164730.html
Try this module on the attachment..
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
now become easier !!
check this link
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);
?>
I found a simple tutorial for newbie.. !!!
Click here… I spend more than one hour to find out this.. Pity me !
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
<?php print theme('links', menu_navigation_links('menu-machine-readable-name'), array('id' => 'menu_id', 'class' => 'menu_class')); ?>