gemini06720 wrote:...trying to understand the concept behind the GNU Translation Project 'gettext'...
actioman wrote:Ok, no hurry. If you can, very well. If you can not, well anyway!
Manuel, I must be doing something wrong... After two clean installations of Mike Challis 'Fast Secure Contact Form' scrit files, I cannot get the contact form to display in any other languages other than english, no matter which parameters I use...
I have not contacted Mike Challis yet as I want to find out by myself why the contact form will not display in french with the french language files already available/installed.
I have also noticed that Mike Challis' scripts do not play all that well when installed and run under XAMPP on a Windows platform - XAMPP = Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl languages. I also tried changing the name of the directory where the files are originally installed to (ie: 'contact-files') but, unfortunately, some paths seem to be hard coded into the script rather than relying on the path information variable as entered (declared) during installation...
actioman wrote:...I noticed however that you have a different font type. Yours is smaller and therefore looks better on the table.
Where can I change mine, if possible of course?...
Manuel, you should know by now that 'almost' every thing is possible - look at what you have accomplished over the past months, new web pages...
As you should be aware, the way much of the web page information is displayed on the screen is through the use of cascading style sheets or CSS - the cascading style sheets are used, not only to offer different colour themes, but also to position the information on the screen.
OK, here is how I do any changes/modifications to my pages without having to change a bunch of CSS files. I have created a new cascading style sheet which I have called 'weather-cumulus.css' and which only contains the properties I want to change on some or all the web pages displayed. So, I have added the following line to my 'weather-cumulus.css' file:
Code: Select all
body {
font-family: "Trebuchet MS", verdana, helvetica, arial, sans-serif;
}
But, what is very important is that this 'weather-cumulus.css' file be loaded after all the other cascading style sheets have loaded, meaning that a line such as
Code: Select all
<link rel="stylesheet" href="weather-cumulus.css" media="screen" title="screen" />
be added to the end of the 'top.php' file. This way, all the other cascading style sheets are read and processed before this last one is read and modify whatever properties need to be modified (clear as mud...

).