PDA

View Full Version : Forumhead icons


soaringpine
01-30-2012, 07:28 PM
I am looking for a mod or edit to accomplish the social media icons like this site has - http://forum.xda-developers.com/announcement.php?a=81 Not to mention this site is an incredible example of vbulletin's potential. Do not know if this is a style or if all of this was done independently but WOW!

Any help on accomplishing the twitter/facebook icons in the forumhead right side would be much appreciated.

RobbieZ
02-01-2012, 09:44 AM
vb 3.8.7 was a better 'get to grips' with forum software (which is what they are using)

your social media icons is just css calls with some div list and tables.


inserting this into your body would do it.

<div id="topiconbox">
<li><a href="http://www.twitter.com/yourtwittersite">
<img title="twitter" alt="twitter" src="twitter.png">
</a>
</li>
<li><a href="http://www.facebook.com/yourfacebook">
</li>
<li>........
......
....

a call to something like this would accomplish the same

#topiconbox {
float: right;
height: 110px;
margin: 0 -8px 14px 0;
padding: 1px 0 0 10px;
width: 115px;
}
..
.