MyBB Themes - ThemeFreak
GameOne - Printable Version

+- MyBB Themes - ThemeFreak (http://www.themefreak.net)
+-- Forum: MyBB 1.8.x (http://www.themefreak.net/forumdisplay.php?fid=26)
+--- Forum: Theme Support for 1.8.x (http://www.themefreak.net/forumdisplay.php?fid=33)
+--- Thread: GameOne (/showthread.php?tid=518)

Pages: 1 2


GameOne - BadgeR - 4th Apr

My latest threads do not display in the footer section.

How do I fix these pages?:

[attachment=65]

this page is suppose to look like this:
[attachment=66]
on gameone it looks like this:
[attachment=64]

[attachment=63]


RE: GameOne - Tan - 4th Apr

For the latest thread, you need to go to your plugins and activate.

As for the other issues, can you email me an account with template access? I believe you can just reply to your download link. Thanks.

GameOne is a table-less design and you've installed plugins that use tables so that is why you're having those issues. I would need direct access so I can look at what changes you would need.


RE: GameOne - Tan - 4th Apr

So what I did was add the following to the end of your global.css file


Code:
/* table fix */

table.tborder {
width: 100%;
}   


I think that increased the widths for the plugins you installed that used tables.


RE: GameOne - BadgeR - 4th Apr

thank you so much!


RE: GameOne - BadgeR - 4th Apr

I notice something else that in the quick reply box it shows black take a look

[attachment=67]


RE: GameOne - Tan - 4th Apr

Try this

Go to: images/gameone/editor.js

Find:

Code:
    // Add ID to iframe

    $("iframe").attr('id','frame1');
    
    var iframe = $(".sceditor-container iframe").contents().find("head");                
    $(iframe).append($("<link/>",
     { rel: "stylesheet", href: imagepath + "/theme_stylesheet.php", type: "text/css" }

    ));



Add below:
Code:
    // No BG

    $("#frame1").contents().find("body").css("background","none");



RE: GameOne - BadgeR - 5th Apr

Thank you!

How do I make "Register | Lost Pass" color white?

[attachment=69]

When I read a post click drop down to "VIEW MODES: Linear & Threaded Mode" When I click on either one it doesn't work.

[attachment=70]

How do I replace the default forum icons with custom ones matching my thread?

[attachment=71]

How do I make this link of "newest user" on the main forums above the footer stay on the same page instead of opening new page?

[attachment=72]

I remember seeing a profile pop-up screen come up when you would click on a members name but now I don't see it come up anywhere. Can I add this pop-up feature to only on the main forums of the users link?


RE: GameOne - Tan - 5th Apr

It's Easter Sunday but I thought I would just check in to let you know that we'll follow up with you on Monday regarding theme changes.


RE: GameOne - BadgeR - 7th Apr

How do I edit those things I showed you?


RE: GameOne - Tan - 7th Apr

Before doing anything, always backup your original files so that any changes can be reverted.



Register / lost password link


Add this to the bottom of your global.css file:



Code:
a[href="member.php?action=register"],

a[href="member.php?action=lostpw"]{

color: #fff !important;

}


Open latest thread in same window


Code:
Go to: Home » Template Sets » GameOne Templates » Edit Template: footer_threads_thread


Find this:


Code:
<a target="_blank" href="{$thread['threadlink']}">{$thread['subject']}</a>


Remove what is in red:


Code:
<a [color=#ff3333]target="_blank"[/color] href="{$thread['threadlink']}">{$thread['subject']}</a>

Customize forum icon

Go to global.css and edit the following to suit your needs:


Code:
.forum_on, .forum_off {

 font-family: 'gamefont';
}

.forum_on:before, .forum_off:before {
 content: "\e608";
}