0

I am using the premium responsive theme in Drupal 7 to create a site. In the theme the front page has a slideshow on it. Is it possible to make the slideshow appear on the top of every page?

EDIT

So I was messing around with this a little more and I tried bringing the code into page.tpl.php so that it would appear on all pages, but nothing happened. I then tried doing it on the maintenance.tpl.php page, and still nothing happened. Any ideas out there?

apaderno
  • 28,547
  • 16
  • 75
  • 90
Jeff
  • 745
  • 6
  • 24
  • The css says the display is block, but there is no physical block to move to a region no the interface. – Jeff Jun 20 '12 at 20:40
  • Then check the page--front.tpl.php file. If it's hard coded, then it will need to added to page.tpl.php to show on other pages. – jsheffers Jun 20 '12 at 20:44

1 Answers1

2

It seems like we're working on a similar problem, but since you helped answer my question I thought I'd help you out. In the templates folder you have to create a new page--front.tpl.php (which I'm sure you have), and put it the code from this website:

Go Here

This will make your front-page unique, and you can copy the similar code to your page.tpl to make changes to the remaining nodes.

jsheffers
  • 1,602
  • 19
  • 41