Wednesday, August 29, 2012

Box Shadow using CSS3

Hello Guys.
There are basically two types of the shadow to box. one is outer its looks like the glow and some times it gives 3D effects. and another is for the inner glow or inner shadow.
instead of CSS3, we have to use image for the shadow, glow and inner shadow.
so its speedy and easy to change.

1) Outset Glow

Syntax Attributes: 


Inset: NO
Horizontal Length: 5px
Vertical Length: 4px
Blur Radius: 50px
Spread: 1px
Hex: #000000

Friday, August 24, 2012

Create .htaccess file for the HTML site

Create one text file name is 'htaccess.txt' in the root directory of the server.
and copy below text in htaccess.txt file.

Below is a basic structure of the htaccess file.
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>

Tuesday, August 14, 2012

Thumbnails slider is too wide! Please reduce the number of thumnail images or size. in HOT Joomla Gallery

When HOT Joomla Gallery load in ie9, safati and chrome I found the error message like "Thumbnails slider is too wide! Please reduce the number of thumbnail images or size."

SOLUTION:
write below code in the header section and reload the gallery page.

<?php
//remove mootools.js and caption.js
$headerstuff=$this->getHeadData();
reset($headerstuff['scripts']);
foreach($headerstuff['scripts'] as $key=>$value){
 unset($headerstuff['scripts'][$key]);
}
$this->setHeadData($headerstuff);
?>

and find out the below syntax in header of index.php page and comment it.
JHTML::_('behavior.mootools');

I Hope it will help you:)