MyBB Community Forums

Full Version: Possible to mimic forum's theme onto a CMS?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I want to basically use the same header, and theme on a custom "portal" page. Like how MyBB looks exactly the same at Home, About, Mods, and Forum.

How would I start? What would I need?

I know the CSS is required but what about the PHP? The portal would be HTML but implement PHP, and I'd prefer not to use templates like how you can make custom PHP pages.

I also would need to make this OFFSITE. Reason is, if you can visit the current and outdated portal, www.nitrogfx.com/rf, it's a different domain.
You would have to use something like this code (Along with the CSS):

http://pastebin.com/nV3YyhPQ



Though to get things like login to work you'd have to use everything on the same domain I believe. Here's a nice resource though, for what you're looking for:

http://phpdave.com/MyBBIntegrator/
I don't need a login system, just the same "look".

Thank you very very much for this, and setting up the pastebin.

I tried it out, and included the CSS but failed to work. :/ www.nitrogfx.com/rf/
I still see the old layout. D: Did it just look bad, or not work whatsoever?
(2013-05-03, 01:37 AM)Eric J. Wrote: [ -> ]I still see the old layout. D: Did it just look bad, or not work whatsoever?

CMD >
Type: ipconfig /flushdns

If on Mac, try CTRL+F5 and hit it like 10-15 times quickly.

How it looks:
[Image: sO38CJA.png]
^ it appears that forum's css is not applied on your CMS
(2013-05-03, 02:44 AM)iHydra Wrote: [ -> ]
(2013-05-03, 01:37 AM)Eric J. Wrote: [ -> ]I still see the old layout. D: Did it just look bad, or not work whatsoever?

CMD >
Type: ipconfig /flushdns

If on Mac, try Cmd+R and hit it like 10-15 times quickly.

How it looks:
[[ IMAGE ]]

See bold.
Yeah make sure:

<link type="text/css" rel="stylesheet" href="http://www.realforums.net/css.php?stylesheet=80">


is included. I tried it in inspector and it worked, but there was an HTML error somewhere. I'll have a look and see if I can find it.


(Also Shift + Refresh on Windows xD)
(2013-05-03, 03:12 AM).m. Wrote: [ -> ]^ it appears that forum's css is not applied on your CMS

Oh, I feel dumb. I added the jS and jQuery scripts but not the CSS.

Dodgy

Thanks!

(2013-05-03, 03:28 AM)Josh H. Wrote: [ -> ]
(2013-05-03, 02:44 AM)iHydra Wrote: [ -> ]
(2013-05-03, 01:37 AM)Eric J. Wrote: [ -> ]I still see the old layout. D: Did it just look bad, or not work whatsoever?

CMD >
Type: ipconfig /flushdns

If on Mac, try Cmd+R and hit it like 10-15 times quickly.

How it looks:
[[ IMAGE ]]

See bold.
Thanks for correcting my noobish mac-hotkeys

(2013-05-03, 03:30 AM)Eric J. Wrote: [ -> ]Yeah make sure:

<link type="text/css" rel="stylesheet" href="http://www.realforums.net/css.php?stylesheet=80">


is included. I tried it in inspector and it worked, but there was an HTML error somewhere. I'll have a look and see if I can find it.


(Also Shift + Refresh on Windows xD)

Yea, if you look at the link, I added text but won't show up. Checked if there was a <div> issue, but they all added up correctly.
Oh, the div (And all it's contents) <div class="bottommenu">...</div> needs to go inside <div class="container">...</div> at the bottom. As for the text you added not showing up, that's odd. Where did you add it in at?
Pages: 1 2