Style Switcher
Current time: 22-05-2013, 12:59 PM Hello There, Guest! (LoginRegister)


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Possible theme help?
17-08-2007, 10:40 PM
Post: #11
RE: Possible theme help?
I want to say same like kerrang ! Great admin , great friend , great designer and great theme . . .
Awesome service ivan...Many many thanks from me....

[B][url]www.onlineearns.com[/url][/B]
Find all posts by this user
Quote this message in a reply
18-08-2007, 05:21 AM
Post: #12
RE: Possible theme help?
Hey Ivan;

How did you achieve the icons to the side of "who's online", "Birthday" and "Board Statistics". I went briefly through your code but messed the look up.

Also searched mybb but gave up after ten minutes of searching... :/
~Joey
Find all posts by this user
Quote this message in a reply
18-08-2007, 10:47 AM
Post: #13
RE: Possible theme help?
I just played with divs and floating.

But here is the easy way.

index template (added colspan="2")

find
Code:
<tr>
<td class="thead">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" /></div>
<div><strong>{$lang->boardstats}</strong></div>
</td>
</tr>

replace with
Code:
<tr>
<td class="thead" colspan="2">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" /></div>
<div><strong>{$lang->boardstats}</strong></div>
</td>
</tr>

index_birthdays template (complete changed code)
Code:
<tr><td class="tcat" colspan="2"><strong>{$lang->todays_birthdays}</strong></td></tr>
<tr>
<td class="trow1" width="35">
<img src="{$theme['imgdir']}/birthday.png" alt=""/>
</td>
<td class="trow1"><span class="smalltext">{$bdays}</span></td>
</tr>

index_stats template (complete changed code)
Code:
<tr><td class="tcat" colspan="2"><strong>{$lang->boardstats}</strong></td></tr>
<tr>
<td class="trow1" width="35">
<img src="{$theme['imgdir']}/stats.png" alt=""/>
</td>
<td class="trow2"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>
</tr>

index_whosonline template (complete changed code)
Code:
<tr>
<td class="tcat" colspan="2"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</td>
</tr>
<tr>
<td class="trow1" width="35">
<img src="{$theme['imgdir']}/online.png" alt=""/>
</td>
<td class="trow2"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>
</tr>

and add appropriate images to yourthemes directory

if your images are wider than 35 px, change the width from 35 to width of your images (this fixes IE problem)

Hope it helps
kerrang! Wrote:Hey Ivan;

How did you achieve the icons to the side of "who's online", "Birthday" and "Board Statistics". I went briefly through your code but messed the look up.

Also searched mybb but gave up after ten minutes of searching... :/
~Joey

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
18-08-2007, 06:45 PM
Post: #14
RE: Possible theme help?
Thanks buddy, Worked a treat. =)
~Joey
Find all posts by this user
Quote this message in a reply
18-08-2007, 07:08 PM
Post: #15
RE: Possible theme help?
no,no,no, It is my pleasure. =)

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
30-08-2007, 04:16 AM
Post: #16
RE: Possible theme help?
=)

Buddy, you wouldn't happen to know how I could solve this issue I'm having with the toplinks area?

Currently I have two codes for each version of the skin, although one places everything to the left and the default is how I want it but it doesn't work/look right. (two links to the left/ four links to the right)..

Thankfully it's near complete and I can't thank you enough already.
~Joey

Code:
<a name="top" id="top"></a>
    <div id="container">
        <div id="header">
            <div class="menu">
                <ul><div style="float: left;"><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" />{$lang->toplinks_search}</a></li>
                    <li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" />{$lang->toplinks_memberlist}</a></li></div><div style="float: right;"><li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" />{$lang->toplinks_search}</a></li>
                    <li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" />{$lang->toplinks_memberlist}</a></li>
                    <li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" />{$lang->toplinks_calendar}</a></li>
                    <li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" />{$lang->toplinks_help}</a></li></div>
                </ul>
            </div>
            <div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>

            <hr class="hidden" />
            <div id="panel">
                {$welcomeblock}
            </div>
        </div>
        <hr class="hidden" />
        <br class="clear" />
        <div id="content">
            {$bannedwarning}
            {$bbclosedwarning}
            {$unreadreports}
            <navigation>
            <br class="clear" />
Find all posts by this user
Quote this message in a reply
30-08-2007, 09:15 AM
Post: #17
RE: Possible theme help?
First I think it is not good to have div inside ul tag, but I'll go over that for now...

Just befor <div class="logo">
Add
Code:
<div class="clear"><!-- Clear floats --></div>

kerrang! Wrote:=)

Buddy, you wouldn't happen to know how I could solve this issue I'm having with the toplinks area?

Currently I have two codes for each version of the skin, although one places everything to the left and the default is how I want it but it doesn't work/look right. (two links to the left/ four links to the right)..

Thankfully it's near complete and I can't thank you enough already.
~Joey

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
30-08-2007, 10:04 AM (This post was last modified: 30-08-2007 10:13 AM by kerrang!.)
Post: #18
RE: Possible theme help?
That worked a treat buddy!

Thanks..
P.s I Really am out of water here, huh? Sad
Find all posts by this user
Quote this message in a reply
30-08-2007, 12:04 PM
Post: #19
RE: Possible theme help?
You can add height attribute to the menu class...

out of water - what do you mean with that?
We all learn new stuff all the time... Cool

kerrang! Wrote:That worked a treat buddy!

Thanks..
P.s I Really am out of water here, huh? Sad

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
30-08-2007, 12:22 PM
Post: #20
RE: Possible theme help?
Oh it's just an english phrase when someone isn't as good at something. "I'm a fish out of water".. having difficultly with something. Smile

Thanks I've got it done now. just sorting out the links etc... greatly appreciated
~Joey
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


 Quick Theme: