Joomla code


How to remove the tool tip for contact us form

tool-tip

1) Add the CSS class in template.css file

.tooltip
{
font-size:0px;
}

 

How to display images in index.php file for joomla

<img src=”<?php echo $this->baseurl.’/templates/’.$this->template.’/images/mailimage.png’ ?>” />

 

 

For joomla title

<?php
$app = JFactory::getApplication();
$this->setTitle( $this->getTitle() . ‘ – ‘ . $app->getCfg( ‘sitename’ ) );
?>

 

Leave a comment