Page 1 of 1

Headlines section on Main Page does not display on mobile

Posted: Sat Mar 12, 2022 2:37 am
by ynohtna
Does the headline section of the Main page for dynamic web show anywhere when browsing on mobile devices?

I can get the today and tomorrows games to show on the left side, the middle news section I don't use... and the right side with head lines don't show.

Re: Headlines section on Main Page does not display on mobile

Posted: Sat Mar 12, 2022 10:09 am
by SimonT
Hi. Mobile have different and smaller screen size. There is code in the webpage to hidden certain section when the screen resolution is too small. Look at this section to help you.

Code: Select all

If ($LeagueGeneral['OffSeason'] == "True"){
	echo ".STHSIndex_Score{display:none;}";
	echo ".STHSIndex_Top5Table {display:none;}";
	echo "@media screen and (max-width: 890px) {.STHSIndex_Top5 {display:none;}}";
}else{
	echo ".STHSIndex_Top20FreeAgents {display:none;}";
	echo "@media screen and (max-width: 890px) {.STHSIndex_Score{display:none;}}";
	echo "@media screen and (max-width: 1210px) {.STHSIndex_Top5 {display:none;}}";
}

Re: Headlines section on Main Page does not display on mobile

Posted: Mon Mar 14, 2022 2:37 am
by ynohtna
ok, is it horrible to just let us scroll?

Re: Headlines section on Main Page does not display on mobile

Posted: Mon Mar 14, 2022 10:16 pm
by SimonT
The webpage doesn't look good when you try to show all of content that fit on 20 inch screen into a 4.7 inch screen.