Author Topic: Date's outlined  (Read 1532 times)

Offline Andre

  • Jr. Member
  • **
  • Posts: 17
    • Weather Station Smaragd Ede, The Netherlands
Date's outlined
« on: August 29, 2013, 01:55:25 PM »
Hi Jacques or others,

I building op my website and now i have two things that a how it can me fixed.

The dates for the records page is outlined see: http://www.nobo-ede.nl/weer/records.php
What can we do about this.

Second, how can i translate "at" and "on" on that pages.

And i think i do something wrong the site slogan and name are not the same, as in Cumulus.

I hope you can help.

Offline Mr.Meteo

  • Administrator
  • Hero Member
  • *****
  • Posts: 1120
    • http://www.meteostours.ca
Re: Date's outlined
« Reply #1 on: August 29, 2013, 06:27:15 PM »
Hi Andre,

For your dates on 2 lines, locate these lines:

<table width="625"  border="0" cellpadding="0" cellspacing="0" summary="Observations for this month">
   <col width="325" />
   <col width="115" />

Check the "325" and change it for something smaller.

For "at" and "on" surrounding dates, you just have to edit your wt_data... file,
you will find these lines:

// Date formatted
$to = utf8_encode("to ");  // Ex: to 20 may
$pre_time = utf8_encode('at ');  // Ex: at 10:45
$pre_date = utf8_encode(" on ");  // Ex:  on 25 may
$only_date = utf8_encode("On ");  // Ex: On 25 may

You only have to change words according to sample at end of each line.

Finally, for your site name and slogan, lines to edit are into header_menu.php file:
<h1>Weather Blues template</h1>
<h2>Small Weather Slogan Goes Here</h2>

Regards,
Jacques
Please, consider supporting this site 

Offline Andre

  • Jr. Member
  • **
  • Posts: 17
    • Weather Station Smaragd Ede, The Netherlands
Re: Date's outlined
« Reply #2 on: August 30, 2013, 03:53:12 AM »
Hi,

many thanks for youre help  :D