By sv on Sun, 07/27/2014 - 18:15
Forums:
Hi,
First of all, really appreciate the great themes that you have developed! Thanks
I have a couple of queries related to Berry:
- Is there a way to introduce a site name by the side of the logo?
- How can we have client testimonials reflected on the sidebar?
Comments
1) Yes, you can add sitename after Logo image by editing following two files.
---------------------
+ page.tpl.php
+ page--front.tpl.php
-----------------------
You need to add following code after Logo image code.
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"><?php print $site_name; ?></a>
2) you can add testimonials in sidebar by creating a block region. Please refer to this page:
http://drupar.com/basic-drupal-tutorials/how-create-block-region
Thanks. Much appreciated.