making new facebook theme like facebook
PostPosted: 07 Feb 2011, 16:31
I am using new facebook 2.0.1 and my wife tells me it isn't quite the same as the current facebook interface. She tells me that there is no status tab and that instead the options tab has the go ofline and popout chat options. I don't use facebook myself so I don't know if that's just because of a setting she has in facebook. But if anyone wants to replicate that look with new facebook 2.0.1 you can do it by making these changes:
Seems to work fine.
- Code: Select all
OPEN
arrowchat/themes/new_facebook/buddylist_window.php
FIND
<div id="arrowchat_panel_status">
<a href="javascript:void(0);" class="arrowchat_panel_item2">
<span id="arrowchat_options_item2">
<div class="arrowchat_panel_icon2"></div>
'+g[22]+'
</span>
</a>
<div id="arrowchat_status_flyout" class="">
<div class="arrowchat_options_actions">
<div id="arrowchat_gooffline" class="arrowchat_options_padding">
<div class="arrowchat_optionsdot arrowchat_offline"></div>
<span class="arrowchat_flyout_span">'+g[5]+'</span>
</div>
</div>
<div class="arrowchat_options_actions">
'+d+'
</div>
<hr class="arrowchat_options_divider" />
<div class="arrowchat_options_actions">
<div id="arrowchat_goavailable" class="arrowchat_options_padding">
<div class="arrowchat_optionsdot arrowchat_available"></div>
<span class="arrowchat_flyout_span">'+g[1]+'</span>
</div>
<div id="arrowchat_gobusy" class="arrowchat_options_padding">
<div class="arrowchat_optionsdot arrowchat_busy"></div>
<span class="arrowchat_flyout_span">'+g[2]+'</span>
</div>
<div id="arrowchat_goinvisible" class="arrowchat_options_padding">
<div class="arrowchat_optionsdot arrowchat_offline"></div>
<span class="arrowchat_flyout_span">'+g[3]+'</span>
</div>
</div>
</div>
</div><div id="arrowchat_panel_options">
REPLACE WITH
<div id="arrowchat_panel_options">
FIND
<div id="arrowchat_options_flyout" class="">
AFTER, ADD
<div class="arrowchat_options_actions">
<div id="arrowchat_gooffline" class="arrowchat_options_padding">
<div class="arrowchat_optionsdot arrowchat_offline"></div>
<span class="arrowchat_flyout_span">'+g[5]+'</span>
</div>
<div id="arrowchat_goavailable" class="arrowchat_options_padding">
</div>
</div>
<div class="arrowchat_options_actions">
'+d+'
</div>
<hr class="arrowchat_options_divider" />
Seems to work fine.