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?
different font in FF
Hello Jomar,
is incorrect css style. It seems IE is very forgiving for using wrong syntax.
Correct would be:
Also further down the style.css file, you have several timesyou should remove the double use of font-family:
For more information about using css style can recommend the site http://www.w3schools.com/css/default.asp
Greetings,
Henrie
Code: Select all
font: 13px font-family: Tahoma, Arial, Helvetica, Sans-Serif;
Correct would be:
Code: Select all
font-size: 13px;
font-family: Tahoma, Arial, Helvetica, Sans-Serif;
Code: Select all
font-family : font-family: Tahoma, Arial, Helvetica, Sans-Serif;
Code: Select all
font-family: Tahoma, Arial, Helvetica, Sans-Serif;
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.
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 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.