User forums > General (but related to Code::Blocks)

Teletype font tooooooo small

<< < (7/8) > >>

rickg22:
I read there is a way to solve the discrepancies between ie and other browsers in font size...
http://www.clagnut.com/blog/348/

html { font-size: 100%; /* IE hack */ }
body { font-size: 0.75em; }

But I don't remember the original source. I'll try it out.

sethjackson:

--- Quote from: rickg22 on December 15, 2005, 12:54:54 am ---I read there is a way to solve the discrepancies between ie and other browsers in font size...
http://www.clagnut.com/blog/348/

html { font-size: 100%; /* IE hack */ }
body { font-size: 0.75em; }

But I don't remember the original source. I'll try it out.

--- End quote ---

Umm just use point (pt) sizes it works the same in Internet Exploder and Firefox. I know because I have to do it in my CSS. :)

Something like this


--- Code: ---#your-selector
{
    font-size: 14pt;
}

--- End code ---

280Z28:

--- Quote from: Seth Jackson on December 15, 2005, 02:51:10 am ---
--- Quote from: rickg22 on December 15, 2005, 12:54:54 am ---I read there is a way to solve the discrepancies between ie and other browsers in font size...
http://www.clagnut.com/blog/348/

html { font-size: 100%; /* IE hack */ }
body { font-size: 0.75em; }

But I don't remember the original source. I'll try it out.

--- End quote ---

Umm just use point (pt) sizes it works the same in Internet Exploder and Firefox. I know because I have to do it in my CSS. :)

Something like this


--- Code: ---#your-selector
{
    font-size: 14pt;
}

--- End code ---

--- End quote ---

That's what I do.

Edit: nevermind. I use font-size: small;

rickg22:
LOL! :lol: that was a good one.

(If you weren't kidding, please go to the beginning of the thread and see what was causing us problems in the firxt place :P )

280Z28:

--- Quote from: rickg22 on December 15, 2005, 05:08:01 am ---LOL! :lol: that was a good one.

(If you weren't kidding, please go to the beginning of the thread and see what was causing us problems in the firxt place :P )

--- End quote ---

At the end of the css file change it from this:


--- Code: ---* html body tt
{
font-size:10pt;
}

--- End code ---

to this:


--- Code: ---tt
{
font-size:small;
}

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version