Webmaster Forum

Go Back   Webmaster Forum > Web Development > Web Design Lobby

Web Design Lobby Forum for general web design issues not specific to scripting or graphics.


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-07-2003, 05:45 PM
ATLien's Avatar
Contributing Member
 
Join Date: 10-13-03
Location: Atlanta, GA
Posts: 1,135
iTrader: 0 / 0%
ATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really nice
Send a message via AIM to ATLien Send a message via Skype™ to ATLien
Preventing Text Size Change

Ok, everyone knows how browsers can change text sizes, I want to know how to keep browsers from being able to do it. I know if you use exact css text sizes, IE wont resize it, but other browsers such as firebird still can. Can anyone help me?
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #2 (permalink)  
Old 12-07-2003, 05:47 PM
kwvarga's Avatar
Possible Terrorist
 
Join Date: 10-13-03
Location: Tuscaloosa, AL or Atlanta
Posts: 2,504
iTrader: 0 / 0%
kwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web pro
Send a message via AIM to kwvarga
<img src="gd.php?text=blah&size=12">
__________________
http://www.kylevarga.com - My blog.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #3 (permalink)  
Old 12-07-2003, 06:13 PM
ATLien's Avatar
Contributing Member
 
Join Date: 10-13-03
Location: Atlanta, GA
Posts: 1,135
iTrader: 0 / 0%
ATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really nice
Send a message via AIM to ATLien Send a message via Skype™ to ATLien
what?
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #4 (permalink)  
Old 12-07-2003, 06:24 PM
kwvarga's Avatar
Possible Terrorist
 
Join Date: 10-13-03
Location: Tuscaloosa, AL or Atlanta
Posts: 2,504
iTrader: 0 / 0%
kwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web prokwvarga is a highly respected web pro
Send a message via AIM to kwvarga
make the text an image
__________________
http://www.kylevarga.com - My blog.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #5 (permalink)  
Old 12-07-2003, 07:40 PM
ATLien's Avatar
Contributing Member
 
Join Date: 10-13-03
Location: Atlanta, GA
Posts: 1,135
iTrader: 0 / 0%
ATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really nice
Send a message via AIM to ATLien Send a message via Skype™ to ATLien
I don't want it to be a image. Their has to be other ways.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #6 (permalink)  
Old 12-07-2003, 08:13 PM
DaveyBoy's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England.
Posts: 3,886
iTrader: 0 / 0%
DaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest order
what if someone visually impaired views your web site? you're bound to lose trade if the customer can't read the site!

Anyway this code MAY do the job :

[code:1:3faac8466d]
<head>
<style type="text/css">
.myClass { <SCRIPT language="JavaScript"> <!-- var browserName=navigator.appName; if (browserName=="Netscape") { document.write("font-size: medium"); } else { document.write("font-size: small"); { //--> </SCRIPT> }
</style>
</head>
[/code:1:3faac8466d]

Edit the 'medium' and 'small' settings to suit....

Let me know if this works plz.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #7 (permalink)  
Old 12-08-2003, 03:38 AM
LazyJim's Avatar
v7n Mentor
Latest Blog:
None

 
Join Date: 10-13-03
Location: UK
Posts: 2,468
iTrader: 0 / 0%
LazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to behold
Send a message via MSN to LazyJim
medium refers to the user's preferred size, small x-small x-larg etc are relative to that.

Not sure if <script> is allowed in <style> (there's another way if u want me to show u).

all relative font's scale
the W3C standard is to let all text re-sizable even when set in point or pixels.

heights and widths will scale with the text if they are set in em units (or ex), these units require CSS, (as do x-small small medium large x-large).

images are the only sure way to fix size, but using images for text is total shyte.

IMO the best solutiopn is to design layouts that adapt to text size changes. The current standard technologies don't make it that easy though, and <table> based layouts often are miles ahead in functionality and usability for the programmer (untill it comes to alter/maintain the design).
__________________

-LJ-

My advice is to look at each case individually, with an informed mind and an appropriately balanced and objective viewpoint.

Web Design and Development, Ipswich, UK.
My deviantArt
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #8 (permalink)  
Old 12-08-2003, 06:01 AM
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Posts: 1,279
iTrader: 0 / 0%
AcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the rough
man i wanna know this too
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #9 (permalink)  
Old 12-08-2003, 08:25 AM
samer's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Posts: 1,962
iTrader: 0 / 0%
samer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nice
humm.. interesting ...
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #10 (permalink)  
Old 12-08-2003, 10:03 AM
ATLien's Avatar
Contributing Member
 
Join Date: 10-13-03
Location: Atlanta, GA
Posts: 1,135
iTrader: 0 / 0%
ATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really nice
Send a message via AIM to ATLien Send a message via Skype™ to ATLien
I have a design that is very restrictive of content, and when people resize text, it messes the design bad. Anymore ideas?
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #11 (permalink)  
Old 12-08-2003, 10:28 AM
DaveyBoy's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England.
Posts: 3,886
iTrader: 0 / 0%
DaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest order
so redesign the site to accomodate text changes...gotta think about the needs of the users.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #12 (permalink)  
Old 12-08-2003, 10:46 AM
edbarton's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England
Posts: 1,757
iTrader: 0 / 0%
edbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really nice
This is easy just set it to a pixel size in the css. See all my sites I think for the example. I will give you the code if you need it.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #13 (permalink)  
Old 12-08-2003, 10:47 AM
edbarton's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England
Posts: 1,757
iTrader: 0 / 0%
edbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really nice
What the hell

[code:1:d2308caaaa]
<style type="text/css">
<!--
.style1 {font-size: 11px}
-->
</style>
[/code:1:d2308caaaa]
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #14 (permalink)  
Old 12-08-2003, 10:48 AM
edbarton's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England
Posts: 1,757
iTrader: 0 / 0%
edbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really nice
So set the text as style 1 and that would set all the text as size 11
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #15 (permalink)  
Old 12-08-2003, 10:56 AM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
Re: Preventing Text Size Change

Quote:
Originally Posted by ATLien
Ok, everyone knows how browsers can change text sizes, I want to know how to keep browsers from being able to do it. I know if you use exact css text sizes, IE wont resize it, but other browsers such as firebird still can. Can anyone help me?
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #16 (permalink)  
Old 12-08-2003, 10:58 AM
DaveyBoy's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England.
Posts: 3,886
iTrader: 0 / 0%
DaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest orderDaveyBoy is a web professional of the highest order
yeah well done for wasting 2 mins there cardesign
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #17 (permalink)  
Old 12-08-2003, 11:16 AM
edbarton's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England
Posts: 1,757
iTrader: 0 / 0%
edbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really nice
My Bad. Forgive me I am tired
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #18 (permalink)  
Old 12-08-2003, 11:19 AM
edbarton's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England
Posts: 1,757
iTrader: 0 / 0%
edbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really niceedbarton is just really nice
Reconsidering it though I don't think their is a way and you are just going to have to make sure (like DaveyBoy said) that you can accomodate for this.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #19 (permalink)  
Old 12-08-2003, 03:49 PM
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Posts: 1,279
iTrader: 0 / 0%
AcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the roughAcRoNym is a jewel in the rough
there is a way i went on site
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #20 (permalink)  
Old 12-08-2003, 04:13 PM
LazyJim's Avatar
v7n Mentor
Latest Blog:
None

 
Join Date: 10-13-03
Location: UK
Posts: 2,468
iTrader: 0 / 0%
LazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to beholdLazyJim is a splendid one to behold
Send a message via MSN to LazyJim
spit it out AcRo

lol cardesign don't forget 11px is very small and u are forcing many people to peer closer at your text and making it difficult to read. (but not me - ising FireBird I butcher your layouts and pring text up to around 15-20px!).
__________________

-LJ-

My advice is to look at each case individually, with an informed mind and an appropriately balanced and objective viewpoint.

Web Design and Development, Ipswich, UK.
My deviantArt
Digg this Post!Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Change Color, Font, & Size on Hyperlink freebieconvention Web Design Lobby 12 09-12-2008 12:10 PM
Why does this site change size? ivanmax Web Design Lobby 1 03-21-2007 08:33 AM
What text size in IE do u optimise for? dcristo Web Design Lobby 4 11-19-2004 12:48 PM
css ? text size Ricoool Coding Forum 5 10-26-2004 04:08 PM
User Change Text Size Limit Coding Forum 5 06-18-2004 09:50 AM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 05:22 PM.
© Copyright 2010 V7 Inc
Powered by vBulletin
Copyright © 2000-2010 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.