I wonder something strange

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
Stim
Posts: 587
Joined: Mon 6. Jun 2005, 13:13

I wonder something strange

Post 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?
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post 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...
http://www.studmed.dk Portal for doctors and medical students in Denmark
feelX
Posts: 76
Joined: Wed 25. Feb 2004, 03:13
Location: 127.0.0.1
Contact:

Post by feelX »

11 pt is a good size for the most cms / bbs ...
felix - proud member of los locos

"Never argue with an idiot. They drag you down to their level, then beat you with experience."
Stim
Posts: 587
Joined: Mon 6. Jun 2005, 13:13

Post 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
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post 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
http://www.studmed.dk Portal for doctors and medical students in Denmark
Stim
Posts: 587
Joined: Mon 6. Jun 2005, 13:13

Post by Stim »

OK I will try that :lol:
Post Reply