Page 1 of 1

I wonder something strange

Posted: Fri 10. Mar 2006, 15:41
by Stim
Many site use very little font and size, as 8pt or something. And if you change screen from 800x600 to 1024x768 the font will be smaller. I don’t think its so user friendly. Way there ar so many site like font like that??

Which font and size du you use as default and way? Which font and size is recommend?

Posted: Fri 10. Mar 2006, 15:50
by frold
why not create a script that check the resolution, if resolution 1 then use css 1 if resolution 2 use css 2... just a thought...

Posted: Fri 10. Mar 2006, 16:44
by feelX
11 pt is a good size for the most cms / bbs ...

Posted: Fri 10. Mar 2006, 18:45
by Stim
Frold, Sweden here :lol:

I didn’t know that was scrip to handled that. How to create that?

feelX, I use 11pt to, verdana. But I am confused way there are so many site today use fontsize like 8pt

Posted: Fri 10. Mar 2006, 19:20
by frold
Stim wrote:Frold, Sweden here :lol:

I didn’t know that was scrip to handled that. How to create that?

feelX, I use 11pt to, verdana. But I am confused way there are so many site today use fontsize like 8pt
Something like:

Code: Select all

	<script type="text/javascript">
	if (screen.height >= 768 && screen.width >= 1024) {
		document.writeln('<link rel="stylesheet" href="include/inc_js/phpwcms.js">');
	}
	else if (screen.height == 600 && screen.width == 800)  {
		document.writeln('<link rel="stylesheet" href="include/inc_js/phpwcms800_600.js">');
	}
	</script>
Im not a js pro :D

Posted: Fri 10. Mar 2006, 19:27
by Stim
OK I will try that :lol: