Forum Moderators: not2easy

Message Too Old, No Replies

Size of text

Increasing size

         

malcolmcroucher

7:08 pm on Jan 7, 2008 (gmt 0)

10+ Year Member



anyone know how to get the size of text bigger than 36 in html?

lavazza

8:03 pm on Jan 7, 2008 (gmt 0)

10+ Year Member



See w3schools.com : CSS font-size Property [w3schools.com] and their Try-it-yourself demo [w3schools.com]

e.g.

<style type="text/css">
p {font-size: 120px;} // HUGENORMOUS!
</style>

malcolmcroucher

3:17 pm on Jan 8, 2008 (gmt 0)

10+ Year Member



Nope ....

I cant seem to get my text much bigger ...

anyone know of a fix or install or something?

i seem to be stuck (even with the use of style sheets ) on the fact that <p> cant get any bigger than normal same applies to headings ..

no idea ...

Regards

Malcolm

penders

3:27 pm on Jan 8, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I cant seem to get my text much bigger ...

Which browsers are you testing in? Does it effect ALL browsers?

malcolmcroucher

5:20 pm on Jan 8, 2008 (gmt 0)

10+ Year Member



testing in internet explorer .

testing now with firefox.

malcolmcroucher

6:06 pm on Jan 8, 2008 (gmt 0)

10+ Year Member



it works fine on firefox must be a i.e problem

penders

10:40 pm on Jan 8, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



it works fine on firefox must be a i.e problem

Have you tried the "w3schools Try-it-yourself demo" that lavazza linked to above? In this you can try setting the font-size to something "HUGENORMOUS!" If this works then it must be a problem with your specific bit of code rather than your browser...?

You could also check (IE):
Internet Options > General Tab > Accessibility Button > Ignore font-sizes specified in webpages

But I doubt this is the issue since you can at least specify smaller font-sizes.

Xapti

6:29 pm on Jan 9, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I had no problem with this in IE6:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>hi</title>
<style>
.meme{font-size:20em}
.memp{font-size:200px}
.nono{font-size:200pt}
</style>
<body>
<span class="meme">Lup</span>
<span class="memp">Lup</span>
<span class="nono">Lep</span>
</body>
</html>
They even go well beyond 1000px.
Also realize IE has a "text size" option in the view menu. As far as I know that just scales things though, and wouldn't give the text size a limit. My guess is you are/were doing something wrong.