Index.template.php (Themes/tutheme)Buscar:
// Show the menu here, according to the menu sub template.
template_menu();Agregar antes:
// Show social icons fixed
echo'
<div id="social_icons">
<a href="tu direccion de facebook" target="_blank"><div id="facebook"></div></a>
<a href="tu direccion de twitter" target="_blank"><div id="twitter"></div></a>
<a href="tu canal de youtube" target="_blank"><div id="youtube"></div></a>
<a href="', $settings['forum_url'], '/index.php?action=.xml;type=rss" target="_blank"><div id="rss"></div></a>
</div>';Solo deben cambiar lo siguiente: tu direccion de facebook, tu direccion de twitter, tu canal de youtube.
Index.css (Themes/tutheme/css)Agregar al final:
#social_icons
{
position: fixed;
right: 5px;
z-index: 1;
bottom: 10px;
}
#facebook
{
background: url(../images/social/facebook_1.png);
height: 48px;
width: 48px;
}
#facebook:hover
{
background: url(../images/social/facebook_2.png);
height: 48px;
width: 48px;
}
#twitter
{
background: url(../images/social/twitter_1.png);
height: 48px;
width: 48px;
}
#twitter:hover
{
background: url(../images/social/twitter_2.png);
height: 48px;
width: 48px;
}
#youtube
{
background: url(../images/social/youtube_1.png);
height: 48px;
width: 48px;
}
#youtube:hover
{
background: url(../images/social/youtube_2.png);
height: 48px;
width: 48px;
}
#rss
{
background: url(../images/social/rss_1.png);
height: 48px;
width: 48px;
}
#rss:hover
{
background: url(../images/social/rss_2.png);
height: 48px;
width: 48px;
}OK, ahora el rar que esta adjunto, lo descomprimen y lo suben a la carpeta images de su theme.
Y listo, espero que les funcione.