๐ Folder Navigator
Position:
Root
/
apphome
/
faith
/
vpnp1
/
admin
/
infoticker
/
home
Create
Folders
๐ uploads
Rename
Copy
Delete
๐ vendor
Rename
Copy
Delete
Files
๐ index.php
๐ File Editor
Editing:
index.php
<html lang="en"> <head> <title>App News Ticker</title> <style> <?php // Set the default timezone (optional, but recommended) date_default_timezone_set('America/New_York'); // Display the result echo " <p style='font-size: 10px; height:0px'>" ."" . date('h:i A'). " "."" . date('m-d-Y') . "</p><br>"; // Larger font size ?> #ticker { margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; font-family: "Segoe UI", Optima, Helvetica, Arial, sans-serif; line-height:-2em; background-color: none; } #ticker-box { background-color: none; color: white; } </style> <script src="vendor/news-ticker.js"></script> </head> <body> <div id="ticker"> <div id="ticker-box"> <ul> <li style="font-size: 10px;">".........<?php // echo "TODAY IS : " ."" . date('h:i A'). " "."" . date('m-d-Y') . ""; ?> .........If YOU NEED ACCESSKEYS JUST CLICK ON <a class="b" href="https://n4sclub.com/phone/b2bvoicecalling/app1/features/accessstore/web/2-shop.html" target="iframe_b">ACCESS</a> ."</i></strong> </li> <li class="b" style="font-size: 10px;" >" If you havenโt found it yet, keep looking. Donโt settle. As with all matters of the heart, youโll know when you find it. And, like any great relationship, it just gets better and better as the years roll on." - <strong><i>Steve Jobs</i></strong> </li> <li class="b" style="font-size: 10px;">"Not all of us can do great things. But we can do small things with great love." - <strong><i>Mother Teresa</i></strong> </li> </ul> </div> <script>startTicker('ticker-box', {speed:37, delay:20});</script> </div> <!-- ticker --> </body> </html>
๐พ Save Changes