SitePoint Sponsor |
|
User Tag List
Results 1 to 3 of 3
Thread: IE7 text displaying incorrectly
-
Aug 22, 2009, 17:59 #1
IE7 text displaying incorrectly
Hey,
I have an issue regarding displaying the title on my page. Basically the bottom part of the text appears missing in IE7..
IE8 and Firefox is fine, but the problem only occurs in IE7. Any chance someone can have a look and tell me what they think the problem is?
http://www.meyselections.com/intro.php
The CSS style involved here id #title:-
PHP Code:#title {
width:325px;
font-family:"Palatino Linotype";
font-size:30px;
color:#02175c;
margin-top:240px
}
-
Aug 22, 2009, 20:03 #2
- Join Date
- May 2009
- Location
- Arizona
- Posts
- 50
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Try setting a line height on your text like so:
#title {
color:#02175C;
font-family:"Palatino Linotype";
font-size:30px;
line-height:34px;
margin-top:236px;
width:325px;
}
You really should provide alternate fonts for people who don't have that particular font installed on their computers.
-
Aug 23, 2009, 02:28 #3
Perfect thanks,
Regards
Bookmarks