Hi i am scripting on a php game. Now i have a problem! I cant edit the design myself. tryed so hard many times. I Want to remove frames in menus (left & right). and the main section (middle). Whole site should be static without scrolling in the design. How do i remove it or how do i redesign it? Hard to do? I really need help with this so i can build the game. I am a newbee.. See this as training in Php & Css. I am also inerested in familiar games ( no turn/pimp games) Games like in the Screen Shot nr 2 its what i look for. Do you have a free one or cheap mafia game site? Contact me! I also buy scripts via paypal. But they have to bee made of good work. Need a game without frame navigation. Kills the design Budget for a HOT game is 200 USD Max! SCREENSHOTS: SS|1| What i have now: SS|2| What game type i want: Please contact me at hotmail/msn: stukeposen@hotmail.com
Well, if you don't know how to start on this, then yes, it's going to be hard. You'll have to redesign your CSS file amongst other things aside from just grabbing the content from the left and right sidebar.
Here is the frame file code: (login.php) ------------------------------------- <?php require("connections/db.php"); require("connections/require.php"); ?> <html> <head> <title>Welcome - <? echo $player;?></title> </head> <frameset rows="110,*" cols="*" framespacing="0" frameborder="no" border="0"> <frameset rows="110,*" cols="*" framespacing="0" frameborder="no" border="0"> <frame src="banner.php" name="banner" scrolling="no" noresize="noresize" /> </frameset> <frameset rows="0" cols="*" framespacing="0" frameborder="no" border="0"> <frameset rows="*" cols="175,*" framespacing="0" frameborder="no" border="0"> <frame src="menu.php" name="left" noresize="noresize" /> <frameset rows="*" cols="*,160" framespacing="0" frameborder="no" border="0"> <frame src="main.php" name="main" /> <frame src="statbar.php" name="rightFrame" scrolling="yes" scrollbar="left" noresize="noresize" /> </frameset> </frameset> </frameset> <noframes> <p align="center"><strong>Your browser doesn't support frames, please download a newer version.</strong></p> </noframes> </html> ------------------------------------- Want the file to be called game.php and without this type of design. Just a simple php index file that uses design from a css file. So that the design can be seen as i show in screenshot number 2. Thanx for reply btw!
I have little experience with framesets but didn't you try making them liquefied? so they will strech... but im not sure about that.
You're correct in wanting to remove the frames as they are outdated. Honestly you will learn a lot faster if you just learn HTML and CSS as you will be able to re-design, edit and troubleshoot your own sites easily. Just go through some tutorials like at w3schools.com or htmldog. Anyhow in general you'd change your code to something like this: <?php require("connections/db.php"); require("connections/require.php"); ?> <html> <head> <title>Welcome - <? echo $player;?></title> </head> <body> <div id="banner"> <? include('banner.php') ?> </div> <div id="quickmenu"> Quick Menu Goes Here </div> <div id="menu"> <? include('menu.php') ?> </div> <div id="main"> <? include('main.php') ?> </div> <div id="statbar"> <? include('statbar.php') ?> </div> <div id="footer"> Footer Goes Here </div> </body> </html> PHP: Then you can control the layout (position size colours borders appearence etc.. of all of the DIV's via CSS). Just get the page displaying like I have done, don't worry about the layout for now and I will show you how to control it via CSS