Hey,
1.) To fix the logo problem, please complete the following steps:
a.) Open up style.css
b.) On line 84 remove the top attribute:
#top .logo a {
border: medium none;
left: 0;
outline: medium none;
top: 23px;
}
This will then default back to the original 13px.
c.) On line 71, adjust the width and height to match your image (100px by 600px), once completed should look like this:
#top .logo, #top .logo a {
border: medium none;
display: block;
height: 100px;
left: 20px;
position: absolute;
top: 13px;
width: 600px;
z-index: 10;
}
d.) Save and upload style.css to your server.
2.) To remove the Submit News button, open up header.php and remove this code (lines 165 - 174 in the original unmodified template):
<?php
// submit news button
if($k_option['contact']['membernews'] != 2) {
if(($k_option['contact']['membernews_who'] != 2 && current_user_can('level_0')) || $k_option['contact']['membernews_who'] == 2)
{
?>
<a id='submit_news' rel="prettyPhoto" class='ie6fix' href="<?php echo get_bloginfo('template_url'); ?>/submit_news.php?iframe=true&width=420&height=580"><?php _e($k_option['contact']['submit_news_text'],'newscast'); ?></a>
<?php
}
} ?>
James