Hi EB,
Sorry for the delay in responding. I'm glad you like the theme!
I'll have to do some testing on IE8 to see exactly what you're talking about as far as the boxes go. Reducing the font size you would the code below.
#top .portfolio-title { font-size:12px; }
As far as the social media icons, you need to open the template header.php and edit the following lines
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>"; }
if($twitter = avia_get_option('twitter')) { $social ++; echo "<li class='twitter'><a href='http://twitter.com/".$twitter."'>".__('Follow us on Twitter', 'avia_framework')."</a></li>"; }
if($facebook = avia_get_option('facebook')) { $social ++; echo "<li class='facebook'><a href='".$facebook."'>".__('Join our Facebook Group', 'avia_framework')."</a></li>"; }
if($gplus = avia_get_option('gplus')) { $social ++; echo "<li class='gplus'><a href='".$gplus."'>".__('Join me on Google Plus', 'avia_framework')."</a></li>"; }
if($linkedin = avia_get_option('linkedin')) { $social ++; echo "<li class='linkedin'><a href='".$linkedin."'>".__('Add me on Linkedin', 'avia_framework')."</a></li>"; }
so they include a target='_blank' like this:
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>"; }
if($twitter = avia_get_option('twitter')) { $social ++; echo "<li class='twitter'><a target="_blank' href='http://twitter.com/".$twitter."'>".__('Follow us on Twitter', 'avia_framework')."</a></li>"; }
if($facebook = avia_get_option('facebook')) { $social ++; echo "<li class='facebook'><a target="_blank' href='".$facebook."'>".__('Join our Facebook Group', 'avia_framework')."</a></li>"; }
if($gplus = avia_get_option('gplus')) { $social ++; echo "<li class='gplus'><a target="_blank' href='".$gplus."'>".__('Join me on Google Plus', 'avia_framework')."</a></li>"; }
if($linkedin = avia_get_option('linkedin')) { $social ++; echo "<li class='linkedin'><a target="_blank' href='".$linkedin."'>".__('Add me on Linkedin', 'avia_framework')."</a></li>"; }
To remove the underline for all your site links you would add this to your custom.css or Quick CSS:
a { text-decoration: none; }
To remove the underline for just the footer and socket links you would use this:
#footer a, #socket a { text-decoration: none !important; }
To change hover colors you would use this:
#footer a, #socket a { color: #FFFF00; text-decoration: none !important; }
Note: On the code above I combined the underline and color rule change.
Hope this helps!
Regards,
Mya