Where do I edit out the big button below/right of the Main Page Slider?
Thanks
Mike
Where do I edit out the big button below/right of the Main Page Slider?
Thanks
Mike
In index html change following code:
//mainpage headline and button
if($k_option['mainpage']['headline'] != '')
{
echo '<div id="feature_info">';
if($k_option['mainpage']['buttonText'])
{
echo '<a href="'.get_permalink($k_option['mainpage']['buttonLink']).'" class="big_button heading ie6fix"><strong class="ie6fix">'.$k_option['mainpage']['buttonText'].'</strong></a>';
}
echo '<div class="text">'.$k_option['mainpage']['headline'].'</div>';
echo '</div>';
}
?>
to
//mainpage headline and button
if($k_option['mainpage']['headline'] != '')
{
echo '<div id="feature_info">';
echo '<div class="text">'.$k_option['mainpage']['headline'].'</div>';
echo '</div>';
}
?>
The Dude
Perfect Dude,
Thank you.
I am unable to find a html file only PHP - can you help as I need to remove this for my client.
Sry. My mistake - you need to look into index.php :-)
The Dude
You must log in to post.