This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<head> | |
<style> | |
body {font-family: helvetica, arial, sans-serif;} | |
a {text-decoration: none;} | |
.window { | |
margin-top: 12px; | |
overflow-y: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$supportbox_array = array( | |
'<a href="GOOGLE-ANALYTICS-CAMPAIGN-LINK"><img src="IMAGE-LINK" style="margin: 0 auto;" alt="ALT-TAG" /></a>', | |
'<a href="GOOGLE-ANALYTICS-CAMPAIGN-LINK"><img src="IMAGE-LINK" style="margin: 0 auto;" alt="ALT-TAG" /></a>', | |
'<a href="GOOGLE-ANALYTICS-CAMPAIGN-LINK"><img src="IMAGE-LINK" style="margin: 0 auto;" alt="ALT-TAG" /></a>', | |
'<a href="GOOGLE-ANALYTICS-CAMPAIGN-LINK"><img src="IMAGE-LINK" style="margin: 0 auto;" alt="ALT-TAG" /></a>', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- a div for text to accompany the image --> | |
<div style="margin-top:50px;">DESCRIPTION TEXT CAN GO HERE</div> | |
<!-- Create a 600px wide div as a viewport to a wider image. Let webkit know that it should scroll when touched on mobile. --> | |
<div id="framecont" style="background-color:#ffffff; height: 100%; width: 600px; overflow: scroll !important; -webkit-overflow-scrolling:touch !important;"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes"> | |
<!-- Set pixel width in the div below to the width of your actual image --> | |
<div class="inside" style="width: 1000px;"> | |
<img src="image1000px_wide.jpg" /> | |
</div> | |
</div> |