TinyPortal

Development => Support => Topic started by: wildenborch on September 15, 2019, 09:38:15 PM

Title: Memberlist on mobile phone theme Alpha Centauri
Post by: wildenborch on September 15, 2019, 09:38:15 PM
Hi,

I just noticed that with theme Alpha Centauri - on my mobile phone - the memberlist is not showing correctly (incl. the memberlist of this site!)

This is caused by this line in the themes css file:

#mlist table td { display: none;  }

I changed this to
#mlist table td { display: all;  }

and now its showing correctly.

Just to let you know......

Fred
Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: lurkalot on September 15, 2019, 10:00:50 PM
Thanks Fred.  I've made the edit as suggested. Let me know if all's ok.  ;)
Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: wildenborch on September 15, 2019, 10:07:31 PM
Himike,

Yes, its ok now

Fred
Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: @rjen on September 15, 2019, 10:11:37 PM
It may need a bit more work?
Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: lurkalot on September 15, 2019, 10:26:29 PM
I got the same until I cleared my browser cache. Though I was using responsive view mode in Firefox.
Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: lurkalot on September 15, 2019, 10:37:04 PM
Just took a screenshot on my mobile.
Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: @rjen on September 16, 2019, 07:03:03 PM
Yep, you were right. Needed to clear the cache... then I got all sorts of irrelevant columns, so I made one extra change to the index.css..


@media only screen and (max-width: 580px) {
   .reportlinks a, .buttonlist ul li { width: 50%;    }
   .reportlinks a { width: 35%;    }
   .reportlinks a:first-of-type { width: 85%;    }
   ul.quickbuttons li { width: 50%; }
   .nextlinks a { width: 49%;  }
   #mlist .hidden {display: none; }
}


With this added the redundant columns are now gone...

   #mlist .hidden {display: none; }

Title: Re: Memberlist on mobile phone theme Alpha Centauri
Post by: lurkalot on September 16, 2019, 08:16:19 PM
Thank you @rjen

I'll check what it looks like on my mobile later, looks good in FF responsive view mode.  O0