Hi,
First of all please try to post topics in the corresponding category, this way it's easier for the support crew to aid you :) You're using the Broadscope theme so it should have been posted there ;)
1) You can open header.php and remove line 90 through 96 (if the file was unedited)
<ul class="social_bookmarks">
<li class='rss'><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></li>
<?php
if($twitter = avia_get_option('avia, twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."'>Twitter</a></li>";
if($facebook = avia_get_option('avia, facebook')) echo "<li class='facebook'><a href='".$facebook."'>Twitter</a></li>";
?>
</ul>
2) You can open style.css and adjust line 2012.
.boxed #featured .feature_excerpt{
padding: 20px 20px 38px 20px;
width:938px;
}
To:
.boxed #featured .feature_excerpt{
padding: 20px 20px 38px 20px;
width:938px;
font-size:16px;
}
3) You can play with the colors in light-skin.css on line 44 through 56.
#top .avia_mega a{
color:#333; /*Color of the menu text*/
background:#ff0099; /*Color of the menu background when not hovered*/
}
#top .avia_mega>.current-menu-item >a, #top .avia_mega>li:hover>a{
background: #333;
color:#fff;
}
#top .avia_mega>li>a:hover, #top .avia_mega>li:hover>a, #top #wrap_all .avia_mega .open-mega-a{
background: #fff; /*BG when hovered*/
color:#333; /*color when hovered*/
}
Footer:
You can remove everything between the following in footer.php:
<!-- ####### SOCKET CONTAINER ####### -->
STUFF
<!-- ####### END SOCKET CONTAINER ####### -->