XF 1.2 User info Not Showing in Smartphone

maman

Member
upload_2014-2-16_20-57-56.webp

I have enabled the display of additional user info in my site like number of likes and sex. The thing is that this information does not show up when browsing through a smart phone.

How can I change that?
 
That area is explicitly hidden in the response style:

Admin CP -> Appearance -> Templates -> message_user_info.css

Code:
	.Responsive .messageUserBlock .extraUserInfo
	{
		display: none;
	}

You can remove that CSS if you wish. Or duplicate and override it in the EXTRA.css template.
 
Top Bottom