Jump to content

Nightmares

Members
  • Posts

    7
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by Nightmares

  1. I was wondering if you were active here! In 2010, you actually sold me 3 pets from a petsite I was working with you on. I was a writer for your project. I am definitely going to figure out my bills within the next few weeks so I can place some orders with you! Much love Liz and I am glad to see a familiar face. ❤️

  2. On 11/8/2022 at 4:48 AM, judda said:

    So the good thing is you don't have a ton to change to make things valid, you would just need to move your include statements into the actual `body` section.  That being said, I would probably tweak it a little bit more so you aren't having to write the `<html>` every time.  Pop all of that stuff into the `header.php` and you are golden.

    <?php
    $pageTitle = 'News';
    
    include 'header.php';
    ?>    
    <img class="map" src="map2.jpg">
                <br>Testing Testing adding some words to test this out.
                <br> Testing and adding more words.
                <br>Kinopiron Kinopiron Kinopiron1<br> Whoop Whoop
    <?
    include 'footer.php';

    Then your respective files would look something like this ...

    `header.php`

    <html>
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Kinopiron | <?php echo $pageTitle ?? 'Home'; ?></title>
        <link rel="stylesheet" href="Kinopiron.css">
    </head>
    <body>
    <?php
    include 'leftside.php'; // Or this could just be included in here

    Then your `leftside.php` would include the stuff for the container.

    Well... don't hate me but I completely changed everything up and once I can get everything situated and done with the main coding (still have a few more pages to add dummy text to and the layout and such and then I am starting other confusing things that I still don't quite understand but getting the hang of it) - I will show everyone. I dug through my old development forums from 2010 and saw where we wanted it to be like a social media network kind of thing. I am trying to figure out how to include a social media look to it while still having the functions and activity of a pet site. This is going to be interesting and I honestly can not wait to share with you..

    • Like 2
  3. On 10/31/2022 at 9:55 AM, crotanite said:

    Its definitely got that old school vibe down well, you've done a really good job there!

    In terms of your markup (the HTML you've written), a couple of points:

    * Some of the elements you've used are in unusual places and are duplicated for some reason(??), not sure what's going on there, but provided a simple example below to show what I mean for how it should be laid out.

    <html>
      <head>
        <title>title</title>
        <meta />
        <link />
      </head>
      <body>
        <div>content</div>
        <script src />
      </body>
    </html>

    * I would maybe suggest changing the header image so the whole thing isn't a fixed image, but just the center bit is, then do the side pieces as <div> so you can easily add content into them. Plus if you want to change up the navigation later, having to change some <div>s is a lot easier than image manipulation each time!

    * Maybe make it so that when you click the banner you go back to the index page, cause right now there's no way back.

     

    Hope these few things help, if you need some assistance with css for the layout feel free to ask and I'll see what I can do 🙂

     

     

     

     

    Also this is my code for index.php:

     

    <?php
    
    include 'header.php';
    include 'leftside.php';
    
    ?>
    
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Kinopiron | Home</title>
        <link rel="stylesheet" href="Kinopiron.css">
    </head>
    
    <body>
        <div class="Contentbox"><p class="Content"> 
        <img class="map" src="map2.jpg">
                <br>Testing Testing adding some words to test this out.
                <br> Testing and adding more words.
                <br>Kinopiron Kinopiron Kinopiron1<br> Whoop Whoop
    
    
    
        </p></div>
    </body>
    
    </html>

    and I am using visual code studio and XAMPP for the server.

    I type the exclamation point and it auto inserts everything and I have just gone in to put it needed to include the header and left side bar and type in my <div> and <p> class. 

  4. On 10/31/2022 at 9:55 AM, crotanite said:

    Its definitely got that old school vibe down well, you've done a really good job there!

    In terms of your markup (the HTML you've written), a couple of points:

    * Some of the elements you've used are in unusual places and are duplicated for some reason(??), not sure what's going on there, but provided a simple example below to show what I mean for how it should be laid out.

    <html>
      <head>
        <title>title</title>
        <meta />
        <link />
      </head>
      <body>
        <div>content</div>
        <script src />
      </body>
    </html>

    * I would maybe suggest changing the header image so the whole thing isn't a fixed image, but just the center bit is, then do the side pieces as <div> so you can easily add content into them. Plus if you want to change up the navigation later, having to change some <div>s is a lot easier than image manipulation each time!

    * Maybe make it so that when you click the banner you go back to the index page, cause right now there's no way back.

     

    Hope these few things help, if you need some assistance with css for the layout feel free to ask and I'll see what I can do 🙂

    So... "easy" I can't do.. I can't cook noodles or rice but give me a sushi recipe, fried rice, steaks, anything incredibly hard and I can accomplish- resin work? GOT YOU. I can paint all kinds of designs in it- right? Basically easy is something hard for me to wrap my head on... I completely forgot the home page button... anywhere.

     

    so yea. I took  a few days break because of my daughter's birthday but I logged onto my desktop today with full intentions to fix some stuff- lol. So I will be makin the banner a click back for home page as well as adding "HOME" in the link side bar. 

  5. I've been scrubbing through these forums and google trying to figure it out. I have been using w3school to teach myself front end (which if I do say so myself- I am doing decent with)... I had someone helping me with back end but I think the different time zones was a conflict and we were abandoned. I have 1 artist, I do graphics and coding for the site as well as all of the writing ... No I am not ok lol...

     

    But now I need to learn the back end part. I am honestly confused with everything and trying to figure out how things "piece together"?

    I was going to worry about the battle part later on but do need to go ahead and incorporate "training" and the "levels".

    Would this all be a database thing under the pet? Which how exactly would a pet database be made and utilized?

    I am so confused... 

    • Like 1
  6. 18 hours ago, judda said:

    There are a few "classic neopets" and other sites which have their owners really focused on the 'classic' elements.  I would say even if not a ton of people join if you have fun and learn from it, I would say go for it!

    Thank bunches lovie! 

    Misticpets actually is a heavy influencer for me. 

    • Like 1
  7. Kinopiron.com

     

    I started this project in 2010. Once I reached my senior year in high school- The project was dropped and I have recently started back within the last 3 months and even managed to recover some of my old staff... 

    I designed the layout and created it.

    I coded it.

    Before I teach myself back end development- please tell me honest opinions? I wanted something that kind of look like a classic VPS?

    I also wouldn't turn down any help regarding this as well... programming and coding wise. I am skimming through everything but I really just would like to know outsiders opinions before moving forward?

    • Like 1
×
×
  • Create New...