Hi guys.
I am totally beginner in theme designing and I am trying to create a block with this format.
tab in the left side is a vertical quicktab and I want it to to display the bottom view when the button is clicked, also the images are always constant according to the quicktab button.
I have tried some ways to implement this using block.tpl.php but I failed, I would be appreciated for any idea for implementation.
Would anybody out there know the code (in the Drupal 7 respensive_bartik theme) I would need to change to mask of the title "Welcome to Kanji Yoga" on the front page?
Here's the front page so far. It isn't much yet, I admit:
Hi all,
I am new to drupal and using drupal 7.6. In bartik theme I dont find template.php in the themes/bartik folder while in garland themes folder I found template.php. My question is that is it necessary to make template.php file. If not which template.php file would be used by my theme. Also I want to know how do we get the variables in my own theme for different regions.
Hello, we all know how to create specific template to all pages by using page.tpl.php and ceating template for front page by changing front--page.tpl.php..but when it comes to change the template of a group of nodes (page--node--14, page--node--15, page--node--16, ...) and have not staic number what we should do in this case?
I've created a View with a 'global text area' in the header. However I only want to show it to anonymous users as it says 'Please login to vote'. I've tried using this code I found from another post but its' not working:
<?php
global $user;
if (!$user->uid) {
<span class="gym-rate">Please login to vote.</span>
}
?>