wersja skryptu MyBB: 1.16.8
adres forum: Brak, nie mogę podać ponieważ nie życzy sobie klient, ewentualnie mogę podać dyskretnej osobie na PW.
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): jak dodać fb w panel.
B -> Wyśrodkować C -> Dodać nową tabele (Partnerzy) A -> Zrobić żeby wysokość była mniejsza, bo jest strasznie wysoko.
index ->
adres forum: Brak, nie mogę podać ponieważ nie życzy sobie klient, ewentualnie mogę podać dyskretnej osobie na PW.
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): jak dodać fb w panel.
B -> Wyśrodkować C -> Dodać nową tabele (Partnerzy) A -> Zrobić żeby wysokość była mniejsza, bo jest strasznie wysoko.
index ->
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<style type="text/css">
.buttons {
background: url(images/arrowleft.png) no-repeat;
width: 16px;
height: 16px;
display: block;
cursor: pointer;
}
.clickedbuttons {
background: url(images/arrowright.png) no-repeat;
width: 16px;
height: 16px;
display: block;
cursor: pointer;
}
</style>
</head>
<body>
{$header}
<div style="float: right;">
<a id="button" class="buttons"></a>
</div>
<table>
<tr>
<td width="100%;" valign="top">
{$forums}
</td>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function() {
//run the currently selected effect
function runEffect(){
//get effect type from
var selectedEffect = 'slide';
//most effect types need no options passed by default
var options = {};
//check if it's scale or size - they need options explicitly set
if(selectedEffect == 'scale'){ options = {percent: 0}; }
else if(selectedEffect == 'size'){ options = { to: {width: 200,height: 60} }; }
//run the effect
jQuery("#effect").toggle(selectedEffect,options,500);
};
//set effect from select menu value
jQuery("#button").click(function() {
jQuery(this).toggleClass("clickedbuttons")
runEffect();
return false;
});
});
</script>
<td valign="top">
<div id="effect" class="ui-widget-content ui-corner-all">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" width="240">
<tr>
<td class="thead">
<strong><center>Facebook</center></strong>
</td>
</tr>
<tr>
<td class="trow1">
<center><iframe src="//www.facebook.com/plugins/follow.php?href=http%3A%2F%2Fwww.facebook.com%2FPodkarpackieTrybuny&layout=button_count&&colorscheme=light&font=tahoma&width=150" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px;" allowTransparency="true"></iframe></center>
</form>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
{$boardstats}
<dl class="forum_legend smalltext">
<dt><img src="{$theme['imgdir']}/on.gif"
alt="{$lang->new_posts}" title="{$lang->new_posts}"
style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->new_posts}</dd>
<dt><img src="{$theme['imgdir']}/off.gif"
alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}"
style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->no_new_posts}</dd>
<dt><img src="{$theme['imgdir']}/offlock.gif"
alt="{$lang->forum_locked}" title="{$lang->forum_locked}"
style="vertical-align: middle;" /></dt>
<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
{$footer}
</body>
</html>