REGISTER or LOGIN to have the annoying ads removed.
Post Reply 
 
Thread Rating:
  • 5 Votes - 4.2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[r4] Sideboxes
Dec 13, 2008, 09:18 PM
Post: #41
RE: [r4] Sideboxes
Cannot see why not. The last one is custom boxes and you can put anything you want in them using simple html.
Find all posts by this user
Quote this message in a reply

This ad removed for subscribers.
Dec 13, 2008, 09:51 PM
Post: #42
RE: [r4] Sideboxes
no I meant change all the sideboxes to custom one's like this one

http://vc.clanservers.com/forum
Find all posts by this user
Quote this message in a reply
Dec 26, 2008, 12:37 PM
Post: #43
RE: [r4] Sideboxes
How do I place the boxes in the right?
I've been reading this thread a little, and by what I've read, it's something with the index template.
So here's mine (all):
Code:
<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>
</head>
<body>
{$header}
<table width="100%"  border="0">
  <tr>
    <td width="70%" valign="top">{$forums}</td>
    <td width="85%" valign="top">{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}</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>
Help anyone?
Visit this user's website Find all posts by this user
Quote this message in a reply
Dec 26, 2008, 03:06 PM
Post: #44
RE: [r4] Sideboxes
I have my boxes on the right ... I did it thus:
In Admin CP, I go to templates, index, index and find this code:
<td width="75%" valign="top">{$forums}</td>
<td width="25%" valign="top">{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}</td>

So the forum is the right 75% of my page and the boxes are the right 25% of my boxes.
Find all posts by this user
Quote this message in a reply
Dec 26, 2008, 03:48 PM
Post: #45
RE: [r4] Sideboxes
(Dec 26, 2008 03:06 PM)bestfoot Wrote:  I have my boxes on the right ... I did it thus:
In Admin CP, I go to templates, index, index and find this code:
<td width="75%" valign="top">{$forums}</td>
<td width="25%" valign="top">{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}</td>

So the forum is the right 75% of my page and the boxes are the right 25% of my boxes.
?
Visit this user's website Find all posts by this user
Quote this message in a reply
Jan 02, 2009, 08:53 AM
Post: #46
RE: [r4] Sideboxes
Thanx Lex for his gr8 Plugin
Find all posts by this user
Quote this message in a reply

This ad removed for subscribers.
Jan 02, 2009, 03:01 PM (This post was last modified: Jan 02, 2009 03:03 PM by Chainzs.)
Post: #47
RE: [r4] Sideboxes
Ok I know how to add Additional custom boxes and everything works fine
but how can I add a picture in one of those boxes..
I tried this but it's not working..

<img border="0" src="[IMG]link to the image i want to use[/IMG]" width="135" height="135">

I get a square box with a red x in the corner. :o)
Find all posts by this user
Quote this message in a reply
Jan 02, 2009, 03:17 PM
Post: #48
RE: [r4] Sideboxes
If you're actually putting in [IMG], that isn't HTML so shouldn't be there.....

Click here to download ALL MyBB Central plugins!!
Visit this user's website Find all posts by this user
Quote this message in a reply
Jan 02, 2009, 09:49 PM (This post was last modified: Jan 02, 2009 09:50 PM by Chainzs.)
Post: #49
RE: [r4] Sideboxes
Thanks MattR but actually but i found this way that is working too.
If anyone else wants to know

This one will center your image and add a link to your image.
(just change the Bold Black Texte for yours and it should work.

<a href="http://www.yoursite.com/forum/whateverpagelinkyouwant.php?action=view&current=yourimage.jpg" target="_blank"><center><img src="http://i152.photobucket.com/yourimage.jpg" border="0" alt="Your Overing Text Here"></center></a>
Find all posts by this user
Quote this message in a reply
Jan 10, 2009, 10:05 AM
Post: #50
RE: [r4] Sideboxes
If I post my index, please can someone make it so they show up on the left?

Code:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
{$overview_headerinclude}
<style type="text/css">
.newsbar {
    background: #D6ECA6;
    border-top: 2px solid #8DC93E;
    border-bottom: 2px solid #8DC93E;
    text-align: center;
    margin: 10px auto;
    padding: 5px 20px;
    font-weight: bold;
        color: #080808;
}
</style>

<script type="text/javascript">
<!--
    lang.no_new_posts = "{$lang->no_new_posts}";
    lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$overview}
<table width="100%"  border="0">
  <tr>
    <td width="75%" valign="top">{$forums}</td>
    <td width="25%" valign="top">{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}</td>
  </tr>
</table>
{$boardstats}

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
    <tr>
        <td class="trow3" align="center" valign="middle"><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" /></td>
        <td class="trow1" align="center" valign="middle"> <span class="smalltext">{$lang->new_posts}</span></td>
        <td class="trow3" align="center" valign="middle"><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" /></td>
        <td class="trow1" align="center" valign="middle"><span class="smalltext">{$lang->no_new_posts}</span><br /></td>
        <td class="trow3" align="center" valign="middle"><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}"/></td>
        <td class="trow1" align="center" valign="middle"><span class="smalltext">{$lang->forum_locked}</span></td>
    </tr>
</table>
<br style="clear: both" />
{$footer}
{$overview_body}
</body>
</html>
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:



icon buffet