I used the Dribbble account box on the Angular theme options to input my Vimeo ID.
Then on the Header page I looked for
if($dribbble = avia_get_option('dribbble')) { $social ++; echo "<li class='dribbble'>".__('Follow us on Vimeo', 'avia_framework').""; }
and changed it to
if($dribbble = avia_get_option('dribbble')) { $social ++; echo "<li class='dribbble'>".__('Follow us on Vimeo', 'avia_framework').""; }.
Finally on the Layout. CSS I looked for
.social_bookmarks .dribbble{background: transparent url(../images/layout/icon-dribbbler.png) 0 center no-repeat;}
and changed it for…
..social_bookmarks .dribbble{background: transparent url(../images/layout/icon-vimeo.png) 0 center no-repeat;}
finally again on layout.css I looked for…
.social_bookmarks .dribbble:hover{background-position: -42px center; background-color:#e44885;}
and changed it for
.social_bookmarks .dribbble:hover{background-position: -42px center; background-color:#336666;}
It's pretty much what was advices earlier to previous users. The bit that was missing was introducing my Vimeo ID on Dribbble account box on the Angular theme options page.
Also using firebug was key to identify the problem and why anyone can get the lightbox...
<html class="firefox firefox? html_stretched js_active csstransforms no-csstransforms3d csstransitions js_active " lang="en-US" dir="ltr">
<head>
<body id="top" class="home blog logged-in admin-bar stretched customize-support">
<div id="wrap_all">
<div class="color_strip primary-background"></div>
<div id="social_container" class="container_wrap">
<div class="container">
<div class="social_container extralight-border">
<ul class="social_bookmarks">
<li class="dribbble">
<a href="http://vimeo.com/zorrrrro">Follow us on Vimeo
If you look on the last line, this is the way it should look as compared to…
<a href="http://vimeo.com/zorrrrro/http://vimeo.com">Follow us on Vimeo
… which is what I was getting when the lightbox would appear when clicking on the vimeo icon.
Hope this helps.
Cheers.
Zorrrrro
PS: I still need some help with the email icon showing on the social icons container bar, so anyone with suggestions will be much appreciated.