📁 Folder Navigator
Position:
Root
/
apphome
/
faith
/
vpnp1
/
admin
/
brandname
/
infoticker
/
n4s
Create
Folders
📁 vendor
Rename
Copy
Delete
Files
📄 index.php
📝 File Editor
Editing:
index.php
<html lang="en"> <head> <title>N4S 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-bottom: 0px; padding-left: 0px; padding-top: 0px; padding-bottom: 0px; padding-right: 0px; font-family: "Segoe UI", Optima, Helvetica, Arial, sans-serif; line-height:1.1em; } #ticker-box { background-color: black; color: black; } </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 style="font-size: 10px;" >" WELCOME TO YOUR DASHBOARD. WE WILL PROVIDE YOU WITH UPDATES AND ALERTS HERE. FOR SUPPORT CLICK <a class="b" href="https://n4sclub.com/phone/b2bvoicecalling/app1/features/chatsupport/index.php" target="iframe_b">SUPPORT</a>" - <strong><i>N4S</i></strong> </li> <li 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