• Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

~*~Orange Layout?~*~

Jess

Banned
  • 2,064
    Posts
    21
    Years
    Hiya,

    Im in the need of an Orange Layout.
    If you don`t mind me ruining a already made Orange Layout.
    Could you please tell me where I may get a nice Orange Layout.
    Obvously by ruining I mean editing it with some minor changes..XD
    If so thankies
    If not Spankies.
    Either way Thankies for reading this.
    *Huggles*

    Jess
     
    What do you need?

    I have a really simple layout where you could simply change the css to make it a orange color...

    Or you could just search google for "free orange templates" XD
     
    JKaizer said:
    What do you need?

    I have a really simple layout where you could simply change the css to make it a orange color...

    Or you could just search google for "free orange templates" XD
    WEEE! We have a winner..XD May I please see this simple layout? XD
     
    Eeekies..XD I know PHP but I prefer to use HTML right now.. My last site was php coded. o_O I have been switcing back and forth between PHP and HTML..XD
     
    I use a combo of the two... I wrote my sites in HTML, and I'm too lazy to put it all in the print/echo tags, so I have the <?php and ?> all over in my documents. XD
     
    Well I used this PHP Thingie for the left and ride sidebar. So it would be easier to update em instead of going to all 89+ pages of my old site..XD
     
    Let me guess... your page looked somewhat like this...

    Code:
    <Table>
    <tr><td>-banner-</td></tr>
    <tr>
    <td width="15%"><? include("nav.php"); ?></td>
    <td width="70%">Content Here...</td>
    <td width="15%"><? include("right.php"); ?></td>
    </tr>
    <tr><td>COpyright Junk</td></tr>
    </table>

    ...I just did the simple format for a website. XD
     
    Oh, so *that's* how you do it. I think I'll try it.
     
    Actually their is an EASIER way for PHP, Stick the PHP Code in the middle and the content is all alone and you just have layout.php or whatever you name it instead of two files... its easier to make a layout lol
     
    The best layout in full php IMO is something like...

    Code:
    <? content = "Content Here"; include("layout.php"); ?>

    And then in layout.php, make your layout and where you want the content just put this code
    Code:
    <? print"$content" ?>
     
    Back
    Top