Introduction text in the header section of my site

More
11 years 3 months ago #24433 by Uwe
Hi,
how can I show an introduction text on top of each site? Eg. an invitation to book the services ...
There must be an option to show something like a header-section or headnote as well as there is an option to show the footnote.
How would I do this?
Thanks,
Uwe

Please Log in or Create an account to join the conversation.

More
11 years 3 months ago #24447 by Mr. Dam
Answered through email
Dam

Please Log in or Create an account to join the conversation.

More
11 years 2 months ago #24744 by cirab63
Dam,

Could you share the answer with us.....I'll like to know how to do this as well

Thanks

Please Log in or Create an account to join the conversation.

More
11 years 2 months ago #24754 by Mr. Dam
Hi,
You can add the text in the top of the component by editing source code :
Open file
components > com_osservicesbooking > classes > default.html.php
and function defaultLayoutHTML
You can add tr and td element bellow this code
<?php
if(($category->id >0) and ($category->show_desc == 1)){
?>
<tr>
<td width="100%">
<div class="div_category_details">
<div class="div_category_name">
<?php
echo $category->category_name;
?>
</div>
<?php
echo $category->category_description;
?>
</div>
</td>
</tr>
<?php
}
?>

Thanks
Dam

Please Log in or Create an account to join the conversation.

More
11 years 2 months ago #24759 by cirab63
Thanks Dam

Please Log in or Create an account to join the conversation.

Moderators: Mr. Dam