different font in FF

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
Jomar
Posts: 50
Joined: Tue May 22, 2007 8:09 pm

different font in FF

Post by Jomar »

Script URL: http://www.zydegonutz.nl/index.php?opti ... &Itemid=41
Version of script: 1.6
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
font type
font style

Write your message below:

Hello,
In the css of the guestbook I use the following fontline:
font: 13px font-family: Tahoma, Arial, Helvetica, Sans-Serif;

In IE it looks okay, but in FF I get a different font.
How do I get the correct font in FF?
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post by Henrie »

Hello Jomar,

Code: Select all

font: 13px font-family: Tahoma, Arial, Helvetica, Sans-Serif;
is incorrect css style. It seems IE is very forgiving for using wrong syntax.
Correct would be:

Code: Select all

font-size: 13px;
font-family: Tahoma, Arial, Helvetica, Sans-Serif;
Also further down the style.css file, you have several times

Code: Select all

font-family : font-family: Tahoma, Arial, Helvetica, Sans-Serif;
you should remove the double use of font-family:

Code: Select all

font-family: Tahoma, Arial, Helvetica, Sans-Serif;
For more information about using css style can recommend the site http://www.w3schools.com/css/default.asp

Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
Jomar
Posts: 50
Joined: Tue May 22, 2007 8:09 pm

Post by Jomar »

Did the changes, but still dous'nt look as it should be.
Whell, I'm off for a holliday now, check again in about 2,5 weeks.
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post by Henrie »

Hello Jomar,

I checked your style.css file here: http://www.zydegonutz.nl/gbook16/style.css
And it is not changed.

Fijne vakantie gewenst.
(for English readers: Happy holiday)

Groeten,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
Jomar
Posts: 50
Joined: Tue May 22, 2007 8:09 pm

Post by Jomar »

Got rid of the double font-family stuff now, but still no change,
really tired now, going to get some rest now ;-)

tnx Henrie, I will enyoy it ;-))

Get back on this issue laterzzz
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post by Henrie »

Looks fine to me now :)
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
Jomar
Posts: 50
Joined: Tue May 22, 2007 8:09 pm

Post by Jomar »

Yess, looks fine now, tnx
Gonna spend 1,5 more weeks under the Spanish sun now ;-)
(gee, I needed it)
Post Reply