Hi !
I want to add an additional headline to my front page that is my side page. Is this possible ?
I've seen the related topics about additional headline in http://www.kriesi.at/support/topic/adding-additional-headline-to-front-page-clarification and http://www.kriesi.at/support/topic/how-do-you-add-the-additional-headline-to-the-front-page but it did not work.
To try to figure it out, I went to header.php ,
at the end of this :
#breadcrumb navigation
if(!is_front_page()){
if($k_option['custom']['headlineContent'] == '')
{
$headline = get_post_meta($post->ID, "_headline", true);
if($headline != "") $headline = '<h2>'.$headline.'</h2>';
}
else
{
$headline = $k_option['custom']['headlineContent'];
}
echo '<div class="wrapper wrapper_heading ie6fix" id="wrapper_featured_area">';
echo '<div class="overlay_top ie6fix"></div>';
echo '<div class="overlay_bottom ie6fix">';
echo '</div>';
echo '<div class="center">';
if($headline != "") echo $headline;
echo '</div></div>';
echo '<div class="wrapper" id="wrapper_stripe">';
if(class_exists('kclass_breadcrumb')){ $bc = new kclass_breadcrumb; }
echo '</div>';
}
i added this :
if(is_front_page()){
if($k_option['custom']['headlineContent'] == '')
{
$headline = get_post_meta($post->ID, "_headline", true);
if($headline != "") $headline = '<h2>.$headline.</h2>';
}
else
{
$headline = $k_option['custom']['headlineContent'];
}
echo '<div class="wrapper wrapper_heading ie6fix" id="wrapper_featured_area">';
echo '<div class="overlay_top ie6fix"></div>';
echo '<div class="overlay_bottom ie6fix">';
echo '</div>';
echo '<div class="center">';
if($headline != "") echo $headline;
echo '</div></div>';
echo '<div class="wrapper" id="wrapper_stripe">';
if(class_exists('kclass_breadcrumb')){ $bc = new kclass_breadcrumb; }
echo '</div>';
}
Now i have the place to add my headline, I mean i have my headline but without any content inside. The thing is I have absolutely no idea where I can write my title (for ex : <h2> I love Avisio</h2>) could you please tell me how to write this inside my empty new additional headline ?
thanks a lot for answering and helping !
This forum is really efficient !














