turn off font colour hold button on smaller mobiles...

Post Reply
User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

turn off font colour hold button on smaller mobiles...

Post by spaceace »

on smaller mobile screens, clicking the chat font colour button causes the button to move off the screen where you can't click it again unless you refresh the page
Open ajax_chat.css
Find
Tip: This may be a partial find and not the whole line.
Code: Select all
@media only screen and (max-width: 550px), only screen and (max-device-width: 550px) {
	.shouts {
		width: 100%;
		height:250px;
	}
	.chat-avatars {
		display: none;
	}
	.chat-postprofile {
		min-width: 80px;
		float: left;
		display: inline;
	}
}
Replace with
Tip: Replace the preceding line(s) to find with the following line(s).
Code: Select all
@media only screen and (max-width: 550px), only screen and (max-device-width: 550px) {
	.shouts {
		width: 100%;
		height:250px;
	}
	.chat-avatars {
		display: none;
	}
	.chat-postprofile {
		min-width: 80px;
		float: left;
		display: inline;
	}
	#bbpalette.button2 {
		display: none;
	}
}

if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

Post Reply