Tag Archives: joomla

Joomla : Styling search box and search button

Step : 1

Create a style

.search input.button
{
text-align: right;
background:url(../images/search.jpg) no-repeat;
width:47px;
height:19px;
margin-left:3px;
vertical-align: bottom;
border:none;
}

Continue reading

Joomla : How to remove Phoca Gallery footer?

In Joomla, Phoca Gallery does not give the option in the administration, whether you want to keep Phoca Gallery copyright information in footer or not.
For this you have to edit the code as follows.

Open following PHP file.

SITE_URL\components\com_phocagallery\views\category\tmpl\default.php


Remove the last line

PhocaGalleryUtils::footer();


Very simple.. isn’t it..?