Page 1 of 1

Welcome text

Posted: Mon Jan 04, 2010 8:38 am
by mvraven
/*************************************
Title:
Version:
Author:
Demo:
Download:
Website:

Short description:


*************************************/

I would like to add some welcome information for the visitor at the index page above the 2 options "send" and "watch".
Where do i add that?

Posted: Mon Jan 04, 2010 2:10 pm
by Klemen
Open index.php file in a plain text editor and find lines 685-688:

Code: Select all

<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="50%">
<!-- START SUBMIT -->
(just search for <!-- START SUBMIT --> and you will find the correct <table ...> tag) then paste the HTML code you wish just above that, for example:

Code: Select all

<p>Welcome to XY</p>
.

The modified code would look like

Code: Select all

<p>Welcome to XY</p>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="50%">
<!-- START SUBMIT -->

Thnx!

Posted: Mon Jan 04, 2010 3:14 pm
by mvraven
Thnx for youre help. It works perfect!

Thnx!