Here's the latest on the Forum upgrade... Report problems here
				
					Collapse
				
			
		
	Recommended Videos
				
					Collapse
				
			
		
	This is a sticky topic.
				
				
				
				X
X
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Screenshot 2025-05-01 at 5.19.47 PM.png Screenshot 2025-05-01 at 5.19.42 PM.png
 
 Same issue out of Safari
 
 👍 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Got this error message when I tried to add a custom avatarAttached FilesLast edited by BurghFan; 05-02-2025, 08:57 AM.Steelers : IX, X, XIII, XIV, XL, XLIII
 Penguins : 1990/91, 1991/92, 2008/09, 20015/16, 2016/17
 Pirates : 1909, 1925, 1960, 1971, 1979
 Panthers (FB): 1915, 1916, 1918, 1929, 1931, 1934, 1936, 1937, 1976
 Panthers (MBB): 1927/28, 1929/30👍 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Looking into it.Screenshot 2025-05-01 at 5.19.47 PM.png Screenshot 2025-05-01 at 5.19.42 PM.png
 
 Same issue out of SafariComment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Definitely not, also curious what browser you're using if only because forums are moving quite smoothly for me while testing it out in Edge -- it gets slow when I go to my DMs and such but just general browsing is smooth.Last edited by ChaseB; 05-01-2025, 10:32 PM.I won't ask for Christmas or birthday gifts if you subscribe to the Operation Sports Newsletter (Not Just Another Roster Update). I write it, and it hits your inbox every Friday morning (for freeeeeee). We also have an official OS Discord you can now join.Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 I already sent a message to Steve on Twitter, but my Mod powers have returned. Not sure if that's a widespread issue or not.👍 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Safari. It’s really slow on both my MacBook and iPad. Got a timeout error a minute ago.👍 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 It's extremely slow for me on edge, like over a minute to load any page with or without adblock. I wasn't going to bring it up because I know that's being worked on, but I'm pretty shocked to hear it's running well for anyone.
 
 Edit: About the same on Chrome too.Last edited by bcruise; 05-02-2025, 01:35 AM.Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 MLB: Chicago Cubs
 NFL: San Diego Chargers
 NHL: Chicago Blackhawks
 NBA: Chicago Bulls
 NCAA: Iowa Hawkeyes👍 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Do we not have the User CP or w/e it was called? Meaning like seeing the list of threads we subscribed to but haven't read the latest post.
 
 Or will we not have that feature anymore?Milwaukee Brewers | Green Bay Packers | North Carolina Tar Heels | Wisconsin BadgersComment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Not a problem necessarily, just a question. If I post in an old thread that is currently missing posts since April 8th, will they all appear in order later? Or should I queue up my posts and wait to post them until after so everything remains in order?
 
 Just kidding: Every time I click on a dynasty subforum, it says I'm not authorized to view this page. I can view every other section fine.Last edited by Tovarich; 05-02-2025, 08:28 AM.👍 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Right now the post layout feels super tall with lots of dead space. See my screenshot of this very thread to see how much wasted space there is:
 4Or6x6f.png
 
 
 I put together a rough CSS tweak that tightens things up (smaller avatars, less padding, cleaner spacing). Could be a nice quality-of-life improvement. You will definitely have to tweak some of the values, but its a start:
 
 To try it out, just drop the CSS into `css_additional.css` via the Style Manager in the AdminCP. Let me know if you have any questions on how to use it.Code:/* Reduce overall spacing between posts */ .postbit { margin-bottom: 10px !important; padding: 8px 12px !important; border-radius: 4px; } /* Compact avatar and user info container */ .postbit-userinfo { max-height: 60px; overflow: hidden; display: flex; align-items: center; gap: 8px; } .postbit-avatar img { width: 40px !important; height: 40px !important; border-radius: 4px; } /* Tighten up username and title block */ .username_container, .postbit-usergroup, .usertitle { line-height: 1.2 !important; margin: 0 !important; font-size: 13px !important; } /* Reduce padding in header and body */ .posthead, .postbody, .postcontent { padding: 4px 8px !important; } /* Shrink post font slightly for more density */ .postcontent, .postmessage { font-size: 14px !important; line-height: 1.4 !important; } /* Shrink and dim the signature */ .signature { margin-top: 6px !important; font-size: 11px !important; color: #888; } /* Remove or hide post share buttons to reduce clutter */ .postbit-share-buttons, .postbit .sharethis, .postbit .post_controls .socialshare { display: none !important; } /* Reduce margin and padding on bottom action rows */ .post_controls, .postfoot { padding-top: 4px !important; margin-top: 4px !important; } /* Optional: left-align avatars instead of top-aligned block */ .postbit { display: flex; align-items: flex-start; gap: 12px; } .postbit-userinfo { flex-shrink: 0; } .postcontent { flex: 1; }
 Attached FilesLast edited by JstnJ; 05-02-2025, 11:32 AM.😎 1Comment
- 
	
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 Same issue I'm having.Aside from the speed, the biggest issue I'm having right now is that I can't get my avatar back (Cubs logo). I found where to set up an avatar, but there's an error as soon as I choose the image from my PC (it's a 150 x 105 jpg, so that shouldn't be an issue)
 
 Error is- An unexpected error was returned: 'fwrite(): Argument #1 ($stream) must be of type resource, bool given'
 PSN-Shugarooo
 Steam-ScottM.816
 Twitch.tv/Shugarooo
 Want to follow my Franchises? Join my discord: https://discord.gg/nHbNCWmmGsComment

 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	 
		
	
Comment