inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Apr 8, 2013 13:38:09 GMT -8
Thanks, removing the red bit doesn't get rid of the bold though, but it looks alright in bold. It should do. It certainly does for me
|
|
Former Member
inherit
guest@proboards.com
101401
0
Dec 1, 2024 3:47:19 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 19, 2013 1:57:45 GMT -8
Hi stinky!I am using the red theme.My question is how do I remove the gray border?I am turning it into a Christmas theme and like the layout of your design. The Christmas background is perfect with it. I looked under the style sheet and didn't find the border code.Thank you!
Also is there a remove folder code on this theme?Because when I added my own icons they dont show.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Nov 19, 2013 2:45:34 GMT -8
Hi stinky!I am using the red theme.My question is how do I remove the gray border?I am turning it into a Christmas theme and like the layout of your design. The Christmas background is perfect with it. I looked under the style sheet and didn't find the border code.Thank you! Also is there a remove folder code on this theme?Because when I added my own icons they dont show. By default yes, but I did leave them there so if you wanted you could add them back. Admin > Themes > Layout Templates > Board > Board ListOn line 15, you will see the following: <!--<td class="icon">$[board.icon]</td> -->Remove the parts in blue, so you end up with just the below on line 15: <td class="icon">$[board.icon]</td>
|
|
inherit
35455
0
Aug 23, 2019 7:32:25 GMT -8
BossAlien
Looking for a coder urgently
421
January 2005
blackout
|
Post by BossAlien on Dec 28, 2013 12:24:41 GMT -8
Hi stinky how do I get the info centre to display all members who have logged in past 24 hours?
thanks
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Dec 28, 2013 19:00:42 GMT -8
Hi stinky how do I get the info centre to display all members who have logged in past 24 hours? thanks Admin > Themes > Layout Templates > HomeScroll down to line 85 & 86 where you should see: </table></div>Create a new line AFTER </table>. Now </div> should be on line 87 instead of 86. Copy and paste the below into that new line: <div class="title-bar" line-height="31px;"><h2>Users Online In The Last 24 Hours</h2></div> <tr class="last"> <td colspan="2"> <table> <tr> <td class="info last" style="padding: 5px 16px;"> <table> <tbody> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </div> So you should now have the following ( </table> being line 85 & </div> line 111): </table><div class="title-bar" line-height="31px;"><h2>Users Online In The Last 24 Hours</h2></div> <tr class="last"> <td colspan="2"> <table> <tr> <td class="info last" style="padding: 5px 16px;"> <table> <tbody> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </div> </div>
|
|
inherit
35455
0
Aug 23, 2019 7:32:25 GMT -8
BossAlien
Looking for a coder urgently
421
January 2005
blackout
|
Post by BossAlien on Jan 10, 2014 17:08:21 GMT -8
Hi stinky how do I get the info centre to display all members who have logged in past 24 hours? thanks Admin > Themes > Layout Templates > HomeScroll down to line 85 & 86 where you should see: </table></div>Create a new line AFTER </table>. Now </div> should be on line 87 instead of 86. Copy and paste the below into that new line: <div class="title-bar" line-height="31px;"><h2>Users Online In The Last 24 Hours</h2></div> <tr class="last"> <td colspan="2"> <table> <tr> <td class="info last" style="padding: 5px 16px;"> <table> <tbody> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </div> So you should now have the following ( </table> being line 85 & </div> line 111): </table><div class="title-bar" line-height="31px;"><h2>Users Online In The Last 24 Hours</h2></div> <tr class="last"> <td colspan="2"> <table> <tr> <td class="info last" style="padding: 5px 16px;"> <table> <tbody> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </div> </div>Hi Stinky it appears its not working for me. In my codes line 85 looks different to what you just posted? this is from my line 85 in Home </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> <tr class="last"> <td colspan="2"> <table> <tr> <td class="icon">$[image.online_24]</td> <td class="info last"> <table> <tbody> <tr><th>Users Online in the Last 24 Hours</th></tr> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </tbody> </table> </div> </div> {/if}
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Jan 10, 2014 20:31:35 GMT -8
BossAlien, could you possibly paste all of the home template here for me? Or if you have custom modifications you don't want other's seeing/using, PM me the code. SO I can point you to the correct line(s).
|
|
inherit
35455
0
Aug 23, 2019 7:32:25 GMT -8
BossAlien
Looking for a coder urgently
421
January 2005
blackout
|
Post by BossAlien on Jan 14, 2014 5:08:49 GMT -8
Sorry for late reply
$[news]
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Jan 14, 2014 5:41:21 GMT -8
BossAlien, that info center is the default one from an older theme, and not my custom one If you want the default info center with the last 24hrs section, just click the "reset template" link in the "Home" section (it should be just above the coding). Or if you want the custom info center with it, use the follow. Replace ALL of your existing HOME template with the below: $[news] {foreach $[category]} $[category.anchor] <div class="container boards"> <div class="title-bar bbcode"><h2><div class="title_wrapper">$[category.display_name]</div></h2></div> <div class="content cap-bottom"> $[category.board_list] </div> </div> {/foreach}
</div>
{if $[legend]} <div class="container legend"> <div class="title-bar"><h2>Legend</h2></div> <div class="content"> <table> <tr> {foreach $[legend]} <td>$[legend.icon] <span>$[legend.name]</span></td> {/foreach} </tr> </table> </div> </div> {/if} <br/><br/> {if $[show_stats]} <div class="wrapper2"> <div class="container stats usersonline"> <div class="title-bar" line-height="31px;"><h2>$[total_online]</h2> <font color="#eeeeee"><i>member{if $[total_online] != 1}s{/if} online</i> <!--{if $[total_online] == 1}is{else}are{/if}-->&</font> <h2>$[total_guests_online]</h2> <font color="#dddddd"><i>guest{if $[total_guests_online] != 1}s{/if} lurking</i></font> <span class="small" style="float: right !important;"><h2>$[most_users_online] is our record for most users ever online</h2></span></div> <table style="width: 100%"> <tbody> <tr class="last"> <td colspan="2"> <table> <tr> <td class="info last"> <table> <tbody> <tr><td style="padding: 5px 16px;"> {foreach $[online_user]} $[online_user]{if $[online_user.invisible]} <span class="small">(invisible)</span>{/if}$[online_user.comma] {/foreach} {if $[total_online] == 0}<i>there are currently no members online</i>{/if} {if $[total_online_not_shown]} , and <a class="$[view_active_members_link.class]" href="$[view_active_members_link.href]">$[total_online_not_shown] more...</a> {/if} </td></tr> <table> <tbody> <tr style="border-top: 1px solid #e1e1e1;"><td style="text-align: left !important; padding: 0px 16px; padding-top: 8px;"><font color="#309cda"><b>Big Cheese</b></font> <font color="#f418f7"><b>Global Mod</b></font> <font color="#ae52be"><b>Elite Spam Eater</b></font> <font color="#9cd411"><b>Spam Eater</b></font></td> <td style="text-align: right !important; padding: 0px 8px; padding-top: 8px;"><font color="#ff8400">Art Appreciator</font> <font color="#afad61">Groups Fan</font> <font color="#e2417c">I Like A Challenge</font> <font color="#444444">Lord of the BANNED</font></td></tr> </tbody> </table> </tbody> </table> </td> </tr> </table> </td> </tr> </tbody> </table> </div>
<div class="container stats"> <div class="title-bar" line-height="31px;"><h2>Our Stats</h2></div> <table> <tbody> <tr> <td> <tr> <td class="info" style="padding: 5px 16px;"> <table style="width: 100%"> <tbody> <tr><td align="left"><b>$[total_members]</b> members. Hello and welcome to our newest, $[newest_user]. <td style="text-align: right !important;">$[last_updated_thread.recent_link]</td><tr><td>Users have contributed <b>$[total_posts]</b> posts in <b>$[total_threads]</b> threads<td style="text-align: right !important;">updated by {if $[last_updated_thread]} $[last_updated_thread.last_post.created_by_user] $[last_updated_thread.last_post.date]</td> <tr><td><b><script type="text/Javascript">document.write($(".sub-boards a").length);</script></b> sub-boards. <b><script type="text/Javascript">document.write($(".board").length);</script></b> boards. <b>$[category.length]</b> categories. <td style="text-align: right !important;">view todays <a href="$[recent_threads_link.href]"><font color="#8f8c85"><b>threads</b></font></a> or <a href="$[recent_posts_link.href]"><font color="#8f8c85"><b>posts</b></font></a>, <a href="$[view_todays_active_members_link.href]"><font color="#8f8c85"><b>activity</b></font></a> or <a href="$[birthdays_today_link.href]"><font color="#8f8c85"><b>birthdays</b></font></a></td></tr>{/if} </tbody> </table> </td> </tr> </td> </tbody> </table> <div class="title-bar" line-height="31px;"><h2>Users Online In The Last 24 Hours</h2></div> <tr class="last"> <td colspan="2"> <table> <tr> <td class="info last" style="padding: 5px 16px;"> <table> <tbody> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </div> </div> {/if} <br/><br/> $[shoutbox]</div> <br/><br/>
|
|
inherit
35455
0
Aug 23, 2019 7:32:25 GMT -8
BossAlien
Looking for a coder urgently
421
January 2005
blackout
|
Post by BossAlien on Jan 14, 2014 19:46:58 GMT -8
StinkY oh right thanks for that, I think its one that ElseAndrew made me so will have to check with him first before I mess around with that particular coding. I'll get back to you if I can/can not delete it thanks
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Jan 14, 2014 23:39:03 GMT -8
StinkY oh right thanks for that, I think its one that ElseAndrew made me so will have to check with him first before I mess around with that particular coding. I'll get back to you if I can/can not delete it thanks You tagged the wrong Stinky lol. But ok. Just let me know if you need further help.
|
|
Former Member
inherit
guest@proboards.com
101401
0
Dec 1, 2024 3:47:19 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jan 15, 2014 8:41:55 GMT -8
Hey stinky I am using a couple of your themes.I wanted to replace the icons that are there instead of the folders.I looked under images to no avail.Where be they?
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Jan 15, 2014 10:36:15 GMT -8
STLUEE, I have 'removed' it from this theme, however it's easy to add back. Admin > Themes > Layout Templates > Board > Board List On line 15 you will see: <!--<td class="icon">$[board.icon]</td>--> Simply remove <!-- from the start, and --> from the end, so now line 15 should be: <td class="icon">$[board.icon]</td>
|
|
inherit
fresh2013usmc@gmail.com
199536
0
Feb 21, 2014 7:03:43 GMT -8
iwillsmackyou
4
September 2013
iwillsmackyou
|
Post by iwillsmackyou on Feb 21, 2014 7:03:39 GMT -8
Amazing amazing amazing! I will give u my full support
|
|
inherit
GO NOW Welcome to Pain
145851
0
Nov 2, 2022 12:05:16 GMT -8
Syko Nachoman
as the final day falls into the night, there is peace outside in the narrow light
14,503
August 2009
sykonachoman
|
Post by Syko Nachoman on Jul 7, 2014 15:49:32 GMT -8
I really like this theme, but I'm having an issue with scrolling since we installed it. If you click the "new" icon next to a thread with new replies, or take any other action that should cause the browser to scroll downward, it doesn't scroll. For example, with this thread/post, it resolves the URL correctly, e.g. e720.boards.net/threads/recent/21 turns into e720.boards.net/thread/21/30-rock?page=1&scrollTo=41, but then no scrolling happens. It should take me down to the third post in that thread, however. Were the anchor links removed from the posts or something? I'm not sure how to fix this. Thanks! Edit: I sort-of fixed the problem by reverting all the templates back to the default while leaving the style sheet alone. However, I did have to make this change in the CSS to get the shoutbox looking normal afterward: Line 1355: .shoutbox_container.orientation-top { padding-top: 174px; }
|
|