Marquee

Be sure your league is setup properly before installing any scripts.Setup Video
The marquee script is placed in a header message and a scolling bar is created on your site where you can display personal league messages , draft picks ,top player and player news. The data is scrolled inside the box.
Adjust the var settings to your liking. Use var settings to style to match your skin.
All scripts require cache.js and font awesome file to be placed in a header message as the 1st line. Please review the section "Custom Scripts" Here
This script is already included in our custom template. Do not install it again. Custom template users do not need to load cache.js or font awesome.

MarqueePlace in header message or any HPM

<!-- TICKER HTML -->
<div class="ticker-wrapper"></div>

<script>
// TICKER DISPLAY SETTINGS
var tickerHomePageOnly      = true;         // SET TO TRUE IF YOU HAVE TICKER AS A HEADER MESSAGE BUT ONLY WANT IT ON HOME PAGE; FALSE FOR ALL PAGES
var tickerName              = "Headlines";  // ENTER TICKER NAME
var responsiveTicker        = true;         // SET TO TRUE IF YOUR MFL THEME/SKIN IS RESPONSIVE FOR MOBILE SO THAT THE MARQUEE WILL BE ALSO
var isLeagueIDP             = false;        // SET TO TRUE IF YOU WANT TO INCLUDE IDP OPTIONS; IF FALSE THEN ALL IDP SETTINGS BELOW WILL BE IGNORED
var tickerSize              = "medium";     // ENTER TICKER SIZE "small" , "medium" or "large" 
var tickerLastPlayoffWeek   = 16;           // SET TO LAST PLAYOFF WEEK 
var tickerSpeedDefault      = 2;            // # - SET DEFAULT SCROLL SPEED FROM 0 (slowest) to 6 (fastest)
var tickerDelay             = 3;            // SECONDS TO DELAY BEFORE SCROLLING 1 (shortest) to 6 (longest)

// CUSTOM MESSAGES 
var tickerContent = new Array();
//ADD CUSTOM MESSAGE(S) IN THE FORMAT BELOW
//tickerContent.push( ({"header":"MESSAGE TITLE" , "message":"MESSAGE CONTENT"}) );
tickerContent.push( ({"header":"League Update" , "message":"The league will rollover to 2021 as soon as MFL makes the option available"}) );

//BOTH STANDARD AND LIVE DISPLAY (also includes custom messages above if any)
var includeFranchiseIcons      = true;   // true or false; when showing players include franchise icon if on a MFL roster REQUIRES cache.js
var includeLatestArticles      = 5;      // 0=disabled; #=The number of articles to show

//STANDARD DISPLAY SETTINGS (when NFL games have not kicked off in a given week)
var includeTopPlayerStats      = 5;      // 0=disabled; #=The number of top yardage (Pass/Rush/Rec) to show;
var includeTopPlayerStatsIDP   = false;  // true or false; only applicable when displaying top players and shows the number of top tackles/sacks for IDP;
var includeTopPlayerPts        = 5;      // 0=disabled; #=The number of ytd fantasy pts by position offense to show;
var includePowerRank           = false;  // true or false; show power rank
var includeAltPowerRank        = false;  // true or false; show alternate power rank
var includePointScoredTeam     = false;  // true or false; show franchise point scored ranking
var includeAllplayRecord       = false;  // true or false; show all play ranking
var includeLastWeekResults     = true;   // true or false; show results for fantasy matchups
var includeNextWeekMatchups    = true;   // true or false; show next weeks fantasy matchups
var includeLastWeekNflResults  = true;   // true or false; show results for nfl matchups
var includeNextWeekNflMatchups = true;   // true or false; show next weeks nfl matchups
var includeWaiverOrder         = true;   // true or false; current waiver priority
var includeDraft               = true;   // true or false; used in conjunction with below draft settings
var draftShowEntire            = false;  // true or false; show entire draft; both picks made and future pending selections
var draftTopPicksOnly          = 0;      // #=Display the top # of picks in the draft; only applicable if draftShowEntire = false;
var draftShowPicksMade         = 5;      // #=Display the last # of picks made; only applicable if draftShowEntire = false and draftTopPicksOnly = 0;
var draftShowPicksPending      = 5;      // #=Display the next # of picks pending; only applicable if draftShowEntire = false and draftTopPicksOnly = 0;

//LIVE DISPLAY SETTINGS (when NFL games have kicked off in a given week)
var includeLiveLeaders         = 5;      // 0=disabled; #=The number of live leaders (Pass/Rush/Rec), when applicable, to show;
var includeLiveLeadersIDP      = false;  // true or false; only applicable when displaying live leaders	
var includeNflMatchups         = true;   // true or false; show live NFL matchups
var includeNflMatchupLeaders   = true;   // true or false; show live NFL matchup leaders
var includeFantasyMatchups     = true;   // true or false; show live Fantasy matchups

// TICKER COLORING - SETUP TO MATCH MFL DEFAULT SKIN
var tickerWidth     = "1148px";                         // set max width of ticker - set to 100% if you want it full width
var tickerMargin    = "10px auto";                      // set ticker margin - currently set for margin top 10px , margin bottom 10px and side to side auto to center
var tickerFont      = "Roboto Condensed";               // set font for ticker - default is Roboto Condensed
var tickerBorder    = "#263e68";                        // set border color for ticker
var bigHeadingBG    = "#263e68";                        // set color of background behind text "Headlines" and the border of the ticker
var tickerTxtShdw   = "#000";                           // set the color of the drop shadow for "Headlines" text and icons set to "transparent" to remove
var bigHeadingClr   = "#fff";                           // set color of the text for "Headlines"
var tickerHeadBG    = "#fff";                           // set the bg color for the ticker header
var tickerCogWheel  = "#cd2122";                        // set the color for the ticker cogwheel
var tickerHeadClr   = "#cd2122";                        // set the text color for the ticker header
var tickerTxtBG     = "#eee";                           // set the bg color for the ticker scrolling text
var tickerTxtClr    = "#263e68";                        // set the text color for the ticker scrolling text
var tickerTxtWgt    = "300";                            // set the text weight for the ticker scrolling text
var tickerTxtTrans  = "none";                           // set the text-transform for the ticker scrolling text - change to "uppercase" to capitalize
var tickerLinkClr   = "#263e68";                        // set the color for the links in scrolling text
var tickerLinkHvr   = "#cd2122";                        // set the color for the links on hover in scrolling text
var tickerBoxShdw   = "0 0 1px 1px rgba(0,0,0,0.1)";    // set box shadow - if you dont want shadow set to "none"
var controlsGreen   = "green";                          // set color for the controls boxes when positive setting - current color green
var controlsRed     = "red";                            // set color for the controls boxes when negative setting - current color red
</script>

<!-- MARQUEE JS FILE -->
<script src="https://www.mflscripts.com/mfl-apps/marquee/script.js"></script>