Back to School

The 2025 Yahoo Sports College Football Pick'em season is here! Show your school colors and pick the winning college football teams each week.

All you'll need to get on the field is a Yahoo ID, so get in the game now!

Week 8 Leaderboard

Rank Name Points
1 Dropstepdub 20
2 Minions 20
3 CLJ Rocking Team 20
4 Wildhog 20
5 Unc 19

Fantasy Leaderboard

Rank Name Points +/-
1 The Nukes 122 +3
2 Bob’s folly 122 +1
3 Minions 120 +91
4 Get Schwifty 120 +16
5 GO BLUE!!!!!!!!!!!!!! 119 +78
6 Spooky 1 119 +26
7 El Jefe 119 +30
8 Clutch 119 +19
9 Reuben8 119 +2
10 Volfan82 119 -2

Pick Distribution - Week 9

Game Pick Distribution
1.@ Virginia Tech (Off)56%
  •  
  • California (Off)44%
  •  
  • 2.@ Nevada (Off)13%
  •  
  • Boise St. (Off)87%
  •  
  • 3.@ N. Carolina (Off)18%
  •  
  • Virginia (Off)82%
  •  
  • 4.@ Wake Forest (Off)35%
  •  
  • SMU (Off)65%
  •  
  • 5.@ Kansas (Off)61%
  •  
  • Kansas St. (Off)39%
  •  
  • 6.@ Oklahoma (Off)43%
  •  
  • Mississippi (Off)57%
  •  
  • 7.@ Kent St. (Off)45%
  •  
  • Bowling Green (Off)55%
  •  
  • 8.@ Memphis (Off)37%
  •  
  • South Florida (Off)63%
  •  
  • 9.@ Washington (Off)41%
  •  
  • Illinois (Off)59%
  •  
  • 10.@ Vanderbilt (Off)76%
  •  
  • Missouri (Off)24%
  •  
  • 11.@ Mississippi St. (Off)25%
  •  
  • Texas (Off)75%
  •  
  • 12.@ Fresno St. (Off)58%
  •  
  • SDSU (Off)42%
  •  
  • 13.@ New Mexico (Off)50%
  •  
  • Utah St. (Off)50%
  •  
  • 14.@ Pittsburgh (Off)80%
  •  
  • N.C. State (Off)20%
  •  
  • 15.@ Iowa St. (Off)31%
  •  
  • BYU (Off)69%
  •  
  • 16.@ South Carolina (Off)9%
  •  
  • Alabama (Off)91%
  •  
  • 17.@ Navy (Off)91%
  •  
  • Florida Atlantic (Off)9%
  •  
  • 18.@ Cincinnati (Off)75%
  •  
  • Baylor (Off)25%
  •  
  • 19.@ West Virginia (Off)27%
  •  
  • TCU (Off)73%
  •  
  • 20.Michigan (-8.5)87%
  •  
  • @ Michigan St. (8.5)13%
  •  
  • 21.@ LSU (Off)34%
  •  
  • Texas A&M (Off)66%
  •  
  • 22.@ Wyoming (Off)58%
  •  
  • Colorado St. (Off)42%
  •  
  • 23.@ Kentucky (Off)10%
  •  
  • Tennessee (Off)90%
  •  
  • 24.@ Arizona St. (Off)69%
  •  
  • Houston (Off)31%
  •  
  • 25.@ Utah (Off)78%
  •  
  • Colorado (Off)22%
  •  
  • College Football Pick'em Season

    Regular Season
    • Week 9
    Aug 26 Dec 6

    Certain Data by Sportradar and Rotowire

    © 2025 Yahoo Fantasy Sports LLC. All rights reserved.

    '; newNode += markup.replace(/<\/div>/i, newMesg+'
    '); }); node.set('innerHTML', newNode); node.setStyle('display','block'); node.all('a.close').setStyle('display','block'); node.all('.ysf-'+type).setStyle('display','block').setStyle('opacity','1').setStyle('filter','alpha(opacity=100)').setStyle('height','auto'); }; var Alerts = Y.Base.create('FantasyAlerts', Y.Base, [], { _handles : {}, initializer: function() { var oAlerts = this, warningNode = Y.one('#ysf-warning-block'), confirmNode = Y.one('#ysf-confirmation-block'), criticalNode = Y.one('#ysf-critical-block'), infoNode = Y.one('#ysf-info-block'), containerNode = Y.one('#ysf-alerts'); // If we have alerts elsewhere on the page, don't use the header alerts, use these instead if(Y.one('#ysf-alerts-other')) { warningNode = Y.one('#ysf-warning-block-other'), confirmNode = Y.one('#ysf-confirm-block-other'); criticalNode = Y.one('#ysf-critical-block-other'); infoNode = Y.one('#ysf-info-block-other'); containerNode = Y.one('#ysf-alerts-other'); } if(containerNode) { containerNode.delegate('click', oAlerts.closeAlert, 'a.close'); containerNode.all('a.close').setStyle('display','block'); } oAlerts.set('warningNode', warningNode); oAlerts.set('confirmationNode', confirmNode); oAlerts.set('criticalNode', criticalNode); oAlerts.set('infoNode', infoNode); }, closeAlert: function(e) { e.preventDefault(); var node = e.currentTarget, parentNode = node.get('parentNode'), anim = new Y.Anim({ node: parentNode, to: { opacity: 0 }, duration: 0.3, easing: Y.Easing.easeOut }), heightAnim = new Y.Anim({ node: parentNode, to: {height: 0}, duration: 0.2 }); anim.on('end', function() { heightAnim.run(); }, this); heightAnim.on('end', function() { parentNode.setStyles({ 'display' : 'none', 'opacity' : '' }); }, this); anim.run(); }, show : function(types) { this.fire('beforeShow'); var oAlerts = this, types = (!Y.Lang.isArray(types)) ? false : types; Y.each(types, function(k,i,a) { oAlerts.get(k+'Node').setStyle('display', 'block'); }); this.fire('afterShow'); }, destructor : function() { } }, { ATTRS : { warnings : { value : [], setter : function(v) { var oAlerts = this; return Y.bind(setMessages, oAlerts, 'warning', v)(); }, validator : Y.Lang.isArray }, confirmations : { value : [], setter : function(v) { var oAlerts = this; return Y.bind(setMessages, oAlerts, 'confirmation', v)(); }, validator : Y.Lang.isArray }, criticals : { value : [], setter : function(v) { var oAlerts = this; return Y.bind(setMessages, oAlerts, 'critical', v)(); }, validator : Y.Lang.isArray }, infos : { value : [], setter : function(v) { var oAlerts = this; return Y.bind(setMessages, oAlerts, 'info', v)(); }, validator : Y.Lang.isArray }, warningNode : { value : null }, confirmationNode : { value : null }, criticalNode : { value : null }, infoNode : { value : null } } }); YUI.Fantasy.Alerts = new Alerts(); }, '', { requires : ['base-build', 'node-event-delegate', 'anim-base', 'anim-easing'] }); YSF.use('event', function(Y) { Y.on('contentready', function() { Y.use('ysf-alerts', function(){}); }, '#ysf-alerts.visible'); }); // -->