-1

For purposes of your visualization here is what I need;

Within WordPress I need the homepage to be a fullscreen (or almost) "image map" of the united states that is responsive so that it re-sizes from phones to TV's

I need this on the homepage and nothing else, no logins, widgets etc. just the image map(hot spots for each state).

It sounds really simple, I am hoping someone has come across a theme or mod that does this.

P.S. I have an image map already and can deal with the responsive part, but I don’t know how to use it in WordPress as a full page.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62

1 Answers1

0

Simply create a custom page template (suppose template-home.php)and paste the code you have in that file. Then start making it dynamic by replacing static html with wordpress functions. You can make header-home.php and footer-home.php and use:

<?php get_header('home');

//rest of the stuff here

 get_footer('home');?>

in order to make it full screen use this technique.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
atinder
  • 2,080
  • 13
  • 15