Not sure if anyone else is seeing the scoring screen like I do...
The blue seems to randomly miss some of the cells
Scoring CSS issue?
- Wascawy Wabbits
- Pro Bowler
- Posts: 788
- Joined: Tue Jan 24, 2012 8:49 pm
- Favorite NFL Team: Kansas City Chiefs
- Team Name: Wascawy Wabits
- Location: BC, Canada
Scoring CSS issue?
- Attachments
-
- Screen Shot 2012-09-09 at 3.23.56 PM.png (185.07 KiB) Viewed 6387 times

- bonscott
- Hall of Famer
- Posts: 1037
- Joined: Sun Dec 30, 2007 10:09 am
- Favorite NFL Team: Chicago Bears
- Team Name: Amish Rakefighters
- Location: West Michigan
- Contact:
Re: Scoring CSS issue?
I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).
The below does include the code I use, I didn't feel like cleaning it out.
If I recall correctly if a players game is currently underway the cell will be highlighted in a different color. If the player is in the red zone the cell will have a dashed red line around it and if the player has updated stats there will be a green dashed line around the cell. Really makes it easy to see at a glance what's going on.
The below does include the code I use, I didn't feel like cleaning it out.

If I recall correctly if a players game is currently underway the cell will be highlighted in a different color. If the player is in the red zone the cell will have a dashed red line around it and if the player has updated stats there will be a green dashed line around the cell. Really makes it easy to see at a glance what's going on.
Code: Select all
--------------------------------------------------------------------
Live Scoring
--------------------------------------------------------------------
.gameover {
color: Navy;
font-weight: bold;
}
#live_scoring_summary TD.updatedstats, #live_scoring TD.updatedstats {
background-image: url(http://www3.myfantasyleague.com/mflicons/new_stats_3.gif);
background-position: center left;
background-repeat: no-repeat;
padding-right: 12px;
border: dashed green;
border-width: 2px 2px 2px 2px;
}
#live_scoring_summary TD.redzone, #live_scoring TD.redzone {
border: dashed red;
border-width: 2px 2px 2px 2px;
background-image: url(http://www3.myfantasyleague.com/mflicons/red_zone.gif);
background-position: center left;
background-repeat: no-repeat;
padding-right: 12px;
}
#live_scoring_summary TD.gameunderway, #live_scoring_summary TD.updatedstats, #live_scoring_summary TD.haspossession, #live_scoring_summary TD.redzone, #live_scoring TD.gameunderway, #live_scoring TD.updatedstats, #live_scoring TD.haspossession, #live_scoring TD.redzone {
background-color: #FEFF53;
padding-left: 15px;
}
.gameunderway {
background-image: url(http://www3.myfantasyleague.com/mflicons/game_under_way.gif);
background-position: center left;
background-repeat: no-repeat;
padding-right: 12px;
}
.haspossession {
background-image: url(http://www3.myfantasyleague.com/mflicons/has_ball.gif);
background-position: center left;
background-repeat: no-repeat;
padding-right: 12px;
}
Scott


- Wascawy Wabbits
- Pro Bowler
- Posts: 788
- Joined: Tue Jan 24, 2012 8:49 pm
- Favorite NFL Team: Kansas City Chiefs
- Team Name: Wascawy Wabits
- Location: BC, Canada
Re: Scoring CSS issue?
Is there anything similar for OSX? My 4 year old MacbookPro runs like a pig when I;m running a Windows VM....bonscott wrote:I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).

- braven112
- Site Admin
- Posts: 1265
- Joined: Sat Dec 29, 2007 5:05 pm
- Favorite NFL Team: Seattle Seahawks
- Team Name: Pacific Pigskins
- Location: Seattle, Washington
- Contact:
Re: Scoring CSS issue?
Thanks, I just added this for next week.bonscott wrote:I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).
The below does include the code I use, I didn't feel like cleaning it out.![]()
If I recall correctly if a players game is currently underway the cell will be highlighted in a different color. If the player is in the red zone the cell will have a dashed red line around it and if the player has updated stats there will be a green dashed line around the cell. Really makes it easy to see at a glance what's going on.
Code: Select all
-------------------------------------------------------------------- Live Scoring -------------------------------------------------------------------- .gameover { color: Navy; font-weight: bold; } #live_scoring_summary TD.updatedstats, #live_scoring TD.updatedstats { background-image: url(http://www3.myfantasyleague.com/mflicons/new_stats_3.gif); background-position: center left; background-repeat: no-repeat; padding-right: 12px; border: dashed green; border-width: 2px 2px 2px 2px; } #live_scoring_summary TD.redzone, #live_scoring TD.redzone { border: dashed red; border-width: 2px 2px 2px 2px; background-image: url(http://www3.myfantasyleague.com/mflicons/red_zone.gif); background-position: center left; background-repeat: no-repeat; padding-right: 12px; } #live_scoring_summary TD.gameunderway, #live_scoring_summary TD.updatedstats, #live_scoring_summary TD.haspossession, #live_scoring_summary TD.redzone, #live_scoring TD.gameunderway, #live_scoring TD.updatedstats, #live_scoring TD.haspossession, #live_scoring TD.redzone { background-color: #FEFF53; padding-left: 15px; } .gameunderway { background-image: url(http://www3.myfantasyleague.com/mflicons/game_under_way.gif); background-position: center left; background-repeat: no-repeat; padding-right: 12px; } .haspossession { background-image: url(http://www3.myfantasyleague.com/mflicons/has_ball.gif); background-position: center left; background-repeat: no-repeat; padding-right: 12px; }

- bonscott
- Hall of Famer
- Posts: 1037
- Joined: Sun Dec 30, 2007 10:09 am
- Favorite NFL Team: Chicago Bears
- Team Name: Amish Rakefighters
- Location: West Michigan
- Contact:
Re: Scoring CSS issue?
No, they don't have a Mac version unfortunately. Could try using your smartphone for scoring. I know there are iPhone apps for scoring but not sure if they auto-refresh. The apps for Android do not, you have to manually refresh. I just go to the web page actually.Wascawy Wabbits wrote:Is there anything similar for OSX? My 4 year old MacbookPro runs like a pig when I;m running a Windows VM....bonscott wrote:I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).
Scott


Who is online
Users browsing this forum: No registered users and 1 guest