Couple of queries related to Berry

Hi,

First of all, really appreciate the great themes that you have developed! Thanks

I have a couple of queries related to Berry:

  1. Is there a way to introduce a site name by the side of the logo?
  2. How can we have client testimonials reflected on the sidebar?

Comments

user
Submitted by admin on Fri, 08/08/2014 - 11:21

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

user
Submitted by sv on Tue, 11/11/2014 - 10:49

Thanks. Much appreciated.