1) If you want to remove the top banner message go to Angular > Theme Options and search for the "Top Banner Message" option field. Delete the text in the option field (the textarea field needs to be empty) and save the options.
2) Insert your pinterest url into the Dribble option field (Angular > Theme Options > "Your dribbble account"). Then open up header.php and replace following line:
if($dribbble = avia_get_option('dribbble')) { $social ++; echo "<li class='dribbble'><a href='http://dribbble.com/".$dribbble."'>".__('Follow us on dribbble', 'avia_framework')."</a></li>"; }
with:
if($dribbble = avia_get_option('dribbble')) { $social ++; echo "<li class='dribbble'><a href='".$dribbble."'>".__('Follow us on Pinterest', 'avia_framework')."</a></li>"; }
Last but not least add following css code to the css/custom.css file or into the quick css field and adjust the icon url/path if necessary:
.social_bookmarks .dribbble{background: transparent url(../images/layout/icon-pinterest.png) 0 center no-repeat;}
The demo code above will work if you name your pinterest icon "icon-pinterest.png" and you need to place it into the angular/images/layout/ folder.