Closed (fixed)
Project:
Summertime
Version:
6.x-1.2
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
22 Sep 2009 at 12:33 UTC
Updated:
20 Oct 2009 at 16:20 UTC
Hello,
I have a small question about this awesome theme. I would like to have the Contact envelope icon appear beside the Home icon. In the page.tpl.php I found this line:
<?php if (module_exists('contact')): ?>
<a class="mail" href="<?php echo url('contact'); ?>"></a>
<?php endif; ?>
I don't think I have a contact module installed. Right now I have a Contact page on the site which I created using the 'Webform' module. The URL of this page is www.myurl.com/node/28 Can I have the envelope go to this URL? Or should I install the 'contact' module for this?
Thanks for your help.
Comments
Comment #1
restyler commentedjust replace the code above with
<a class="mail" href="<?php echo url('node/28'); ?>"></a>Comment #2
rkolech commentedOk I got it working now. I had to enable the core module named 'contact' to the IF statement gets satisfied. Once I did that the mail icon appeared. Thanks.