Jump to content
MakeWebGames

responsive template for nw-engine


ppllmmii

Recommended Posts

well if you have a template you like its really easy to implement. do you have a layout or do you need on made?

try implementing the default McCodes theme to a responsive theme ...

but on topic i think someone made a bootstrap theme a while ago for NWE that is responsive but would need extra work to make it suit your game

Link to comment
Share on other sites

try implementing the default McCodes theme to a responsive theme ...

but on topic i think someone made a bootstrap theme a while ago for NWE that is responsive but would need extra work to make it suit your game

I did :)

@ppllmmii - Could you attach an image to your post, or send me a preview of your layout?

Link to comment
Share on other sites

To integrate you should have a quick look at the existing templates, basically it's a pure HTML, nothing special, with just a few PHP variables added inside:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title><?php echo $gameName; ?></title>
<link rel="icon" type="image/png"
   href="<?php echo $webBaseDir; ?>favicon.ico" />
<link
   href="<?php echo $webBaseDir; ?>templates/neo_mafia/mafia.css"
   type="text/css" rel="stylesheet" />
<?php echo $content['header']; ?>
</head>
<body>
   <div id='topBar'>
       <div id='gameTitle'><?php echo $gameName?></div>
       <div id='gameSubTitle'>One gun rules them all</div>
   </div>

       <div id='statArea'><?php echo $content['stats']; ?>
       </div>
   </div>
   <div id='footerBar'>© 2013 - New Worlds Engine - Alain Bertrand - Design by Alain Bertrand</div>
   <div id='sideMenu'>
       <div id='sideMenuHeader'></div>
       <div id='sideMenuContent'><?php echo $content['sideMenu']; ?></div>
       <div id='sideMenuFooter'></div>
   </div>
       <div id='contentArea'>
           <div style='margin-left: auto; margin-right: auto; width: 468px;'><?php if(function_exists("GetBanner")) echo GetBanner('468x60'); ?></div>
           <br />
   <?php echo $content['main']; ?></div>
   <?php echo $content['footer']; ?>
   <div id='verifyContent'><?php VerifyIt(); ?></div>
   <div id='hatImage'></div>
</body>
</html>

 

$gameName could be left out that will fix the name displayed.

$webBaseDir can be set as fixed path

$content['header'] will contains additional headers info

$content['stats'] displays all the stats

$content['sideMenu'] displays the menu on the left (or right as you want it)

if(function_exists("GetBanner")) echo GetBanner('468x60') will add the banner, can be left out

$content['main'] displays the main area

$content['footer'] displays additional content like JS code

And that's about it. Not hard really.

Link to comment
Share on other sites

Yes. But I got multible css. If it is so easy. Than you can get easy money. I am not a dev. I don't know the first thing about html or php.

Please help me. I iam just a guy ho wants a mmorpg. With a nice layout.

That why I choose to spend $100. On the nw-engine. Because it is a easy engine voor very noob mmorpg owners like my self!!

Edited by ppllmmii
Link to comment
Share on other sites

Well you WILL have to learn sorry. It's not question of easy money on my side or not, it's question that YOU must invest time to learn HTML / CSS and PHP in order to make your game. NWE is not a pre-made game, and will never be. It offers a lot, but lacks as well quiet some to make any fun game to play with.

If you have your layout already in HTML, then you should just be able to place the different variables in the right places. Try, experiment and learn.

As alternative, there is quiet a few people here like Kyle which will be more than happy to work for you (payed usually).

Link to comment
Share on other sites

Yes. But I got multible css. If it is so easy. Than you can get easy money. I am not a dev. I don't know the first thing about html or php.

Please help me. I iam just a guy ho wants a mmorpg. With a nice layout.

That why I choose to spend $100. On the nw-engine. Because it is a easy engine voor very noob mmorpg owners like my self!!

i can try if you dont mind

Link to comment
Share on other sites

I am looking for someone with css skills.

I think I got screwed. With this template.

All index files are blank only got 2 psd. En css folder full of somthing!

Which template did you buy exactly? Post a link or some screenshots.

Is the original purpose of the theme to be used for a game, if it's not you'll have to work out where you want the various data to sit.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...