Latest Activity > visualnovel

Sites

All the latest Neocities site news!

Neocities allows anyone to create a free web site to express themselves. Want to create your own awesome site? Join us!

im so excited 2 start working on this..
New pixel art uploaded! My OC is back and this time in a park during a snowy winter. Direct link: https://pixelglade.net/artwork/pixelart/fullsize/pixelglade_armitageIII_02.gif
4 likes
pixelglade updated their site.
3 years ago
2 likes
pixelglade's avatar pixelglade 3 years ago

New guestbook entry, thank you :)

Updated the Guestbook page so the Discord Webhook will receive a name as well as a message (and there is a text area field for name too). Used this same script to make comment boxes on the blog pages.
1 like
pixelglade updated their site.
3 years ago
1 like
Hello again! I am very inspired by your website. I especially love the sleek minimalistic layout, responsive design of the nav bar, original banner with added text title, and the zonelets blog you're maintaining! I read through your Copyright page and the Creative Commons License agreement, and I saw you mention that copying your source code for learning purposes is okay with you. How do I do that? c: Thanks so much
1 like
pixelglade's avatar pixelglade 3 years ago

Thank you! Feel free to take a look at the source code - the way to do it on Firefox on Windows is to right click on the web page and click View Page Source. There are some Javascript objects on the homepage for the Search and the Webrings so I would recommend looking at a simpler page so there's less clutter. Interpreting what you see will become easier as you write/learn more HTML/CSS code.

1 like
pixelglade's avatar pixelglade 3 years ago

One of the simpler pages is the Contact Me page. view-source:https://pixelglade.net/about/contact.html The responsive parts are due to the divs flexcolumn and flexbox. To see what they are referring to you open the .css style page.

1 like
sugarblush's avatar sugarblush 3 years ago

Thank you so much!! I really appreciate it c: I'll do my best. Something I'm struggling with for my Zonelets blog is that the Blog title and Date aren't showing up automatically, despite there being divs for them and I am labeling the html files appropriately. If I type something in the divs the text will not appear on my page. Im assuming it is a Javascript error? I don't know how to fix it tho, do you an idea?

pixelglade's avatar pixelglade 3 years ago

I do have an idea, actually. The first issue is that if you deviate from the template too much or decide to not use on the the variables in the script file, it can break the Javascript that Zonelets uses. For that reason (and because the Javascript was a bit slow sometimes) I actually removed the Javascript from the blog and replaced it with HTML, but I kept a lot the styling divs the same.

1 like
pixelglade's avatar pixelglade 3 years ago

I kept the footer for zonelets because that's how I started with my blog, but it's deviated from the original code a fair bit. I think it was actually the blog title and date issues that made me remove all the Javascript. But I would recommend editing the template file first and testing with that to try troubleshoot. Not sure if that's super helpful, but in the end - it probably is an issue with the Javascript.

1 like
sugarblush's avatar sugarblush 3 years ago

Thank you so much for the suggestion!! I removed the Javascript on the Post Template and I'll continue fiddling around with it while referencing your code c:

sugarblush's avatar sugarblush 3 years ago

Something I'm trying to achieve on my home page is a cute header banner like yours but with my own pixel art. I copied your code and replaced the background image file with mine, but the banner appears as blank. Do you know what is going on? (Thank you so much for all the help by the way, I hope I am not troubling you)

pixelglade's avatar pixelglade 3 years ago

in terms of the background image, check that it's in the root directory of the website. Check the path and file name are correct "./" in the css style file means it's looking in the root directory. Also check the height and width arguments are correct with units (px). You don't have to load the image as a background image, you can load it as an image in HTML in the file instead if you want.

1 like
pixelglade's avatar pixelglade 3 years ago

When I tried looking for your background image by navigating to the filename I got a 404 error so I think the path is probably wrong. The paths are all relative, you can read about it here: https://www.w3schools.com/Html/html_filepaths.asp

1 like
pixelglade's avatar pixelglade 3 years ago

Since you're using my code as a base/reference, I'd appreciate it if you could mention it somewhere on your site like "this website layout was inspired by pixelglade's site" with a link to my site - that's just the terms of the Creative Commons license, you can remix and build upon the content or alter it but attribution is usually required. Whenever your website is finished, I'd appreciate the mention. 🙂

1 like
sugarblush's avatar sugarblush 3 years ago

Thank you a lot for the help!! I'll double check the path to make sure I get it right. And yes absolutely! I'll be sure to give a link back to pixelglade on my main page since I am referencing your code :) thank you for letting me use it to learn, I appreciate it.

1 like
pixelglade's avatar pixelglade 3 years ago

You're welcome! Let me know if you have any more questions.

1 like
sugarblush's avatar sugarblush 3 years ago

Hi again! I've made a lot of progress on my site that I'm very happy with c: Thank you for letting me learn from your code. I have three minor things on my site I want to debug.

sugarblush's avatar sugarblush 3 years ago

First two have to do with responsive design; I want to achieve the equally spaced nav box effect your site has on mobile. I referenced your code, but on my phone my site's "About" box is too squished, making the text feel crammed, while my "Projects" box is too spread out. My "Misc" box seems just fine though. What can I do to even out the "about" and "projects" boxes?

sugarblush's avatar sugarblush 3 years ago

The second thing on mobile; if I swipe on my phone it will reveal that there is extra unused space to the right of my page. I was looking stuff up, and I think it comes from me adding padding to a box that had "width=100%" for responsive design. I can't seem to find the offending box though. This extra space on mobile isn't something present on your site, do you know how you prevented this?

sugarblush's avatar sugarblush 3 years ago

The last thing is very minor, but something I notice on my home page is that there is some extra space between the start of the content box and my beginning header. I checked the css for h2 but I can't find any extra padding, so I'm not sure what is going on. Do you have any ideas?

sugarblush's avatar sugarblush 3 years ago

Sorry for all the questions haha, thank you a lot for all the help. Wishing you the best

pixelglade's avatar pixelglade 3 years ago

In regards to the size of the nav box in mobile when it's running along the top, it's set to fill 100% of the space. It looks like the middle column might be larger is due to the line length- the Pokemon: Sceptre/Spear could be the culprit, I generally tried to keep all my heading names roughly a similar length for that reason. A way to test is to temporarily remove all the headings and see what the columns look like

1 like
pixelglade's avatar pixelglade 3 years ago

I recommend testing your website in a browser and you can do Right Click > Inspect (Q) and then hover the mouse over different elements. When I did this, I found your h1 banner is what is causing the extra space on the right. If you click the element in this mode you can see a highlight for what the padding is, the position, etc.

1 like
pixelglade's avatar pixelglade 3 years ago

My suspicion is the extra space and the header positioning are related issues, if you solve one it might fix the other. The inspect says it's the h1.banner element rather than the header so I'd look into that.

1 like
pixelglade's avatar pixelglade 3 years ago

So don't get me wrong, testing on mobile is important but for narrowing down issues with elements you can resize your browser window to be squished and it will have approximately the same effect which can help you search for issues this way with Inspect.

1 like
sugarblush's avatar sugarblush 3 years ago

Thank you so much! Your responses helped me fix all of those issues c:

1 like
sugarblush's avatar sugarblush 3 years ago

Hi again! c: I am trying to create "favorite things" sections with booktable grids like yours. But one issue I am running into is that when I resize my browser window, the .bookdescription text will go off of the page. Do you know how to keep it in the main container?

pixelglade's avatar pixelglade 3 years ago

Hello~ I actually had this problem with css-grid as well but I never got around to fixing it. In other parts of the site where I have tables (e.g. guestbook, resources root pages) I use just html tables that are set to fit the window. You could try something like that instead, sorry I can't be more help about this right now.

1 like
sugarblush's avatar sugarblush 3 years ago

No need to be sorry at all! Thanks for the suggestion c: I'll see what I can do

1 like
randomworksinc updated their site.
3 years ago
Hi, thank you for the follow!
Posted more fantasy cover art in a new blog post: https://pixelglade.net/about/blog/posts/2023-02-03-Fantasy-Cover-Art-Appreciation-Part-02.html Hope you all take a look - I personally have never read any of these but the covers make me want to
1 like
bright-eyes's avatar bright-eyes 3 years ago

I found it was a lot easier to choose books published in the late 90's and earlier because the art was fabulous. Now, they all sadly look the same. David Eddings is a good, classic fantasy author..

pixelglade's avatar pixelglade 3 years ago

I agree. I remember being able to go into a bookstore and pick a book largely influenced by the cover. What I don't understand is why eBooks have to be re-released with newer and (usually less inspired) covers.

pixelglade updated their site.
3 years ago
1 like
i love your website keep up the good work
1 like
pixelglade's avatar pixelglade 3 years ago

Thank you! Hope you're having a good day.

Hi I love your site!! As a beginning coder I really admire your dedication and the style you've created c:
1 like
pixelglade's avatar pixelglade 3 years ago

Aw thank you so much! I like your design so far, the colour scheme makes me think of a cutesy pastry shop or cupcakes.

1 like
Hello ~ Thank you for the follow!
1 like
Hey there, I (finally) saw your reply on my comment- I won't go missing XD
heckmaster's avatar heckmaster 3 years ago

Basically I just put all my projects under one domain, I've been more motivated this way weirdly enough!

pixelglade's avatar pixelglade 3 years ago

Oh cool, whatever helps!

1 like
jamvn updated their site.
3 years ago
Love the aesthetic and vibe of your site (we may have a few things in common, hehe).
New blog post featuring some fantasy cover art from the 1980s-1990s. There will be more! Check out some awesome artwork: https://pixelglade.net/about/blog/posts/2023-01-27-Fantasy-Cover-Art-Appreciation-Part-01.html
3 likes
rainmirage's avatar rainmirage 3 years ago

the cover for skybowl is so striking!!

1 like
pixelglade's avatar pixelglade 3 years ago

It is, out of the three Melanie Rawn book covers in the post, I think SkyBowl and Star Scroll are my favorites.

pixelglade updated their site.
3 years ago
2 likes
pixelglade updated their site.
3 years ago
2 likes
pixelglade's avatar pixelglade 3 years ago

Noticed all the hyperlinks to my blog posts were broken (oops) so I fixed it.

1 like

Popular Tags

art   music   videogames   programming   anime   games   personal   food   writing   cats   blog   movies   books   gaming   fashion   photography   comics   animation   design   horror   arte   game   drawing   musica   manga   coding   reading   portfolio   ocs   furry   poetry   cute   kpop   history   technology   animals   film   literature   philosophy   fun   education   roblox   nature   sports   programacion   science   videogame   tech   politics   html   programing   travel   minecraft   videojuegos   life   gamedev   love   retro   web   2000s   school   blogging   pokemon   diary   pink   fantasy   computers   youtube   cartoons   illustration   idk   video   dogs   gardening   random   oc   arg   y2k   comic   ai   videos   crafts   cooking   internet   linux   memes   queer   nostalgia   kawaii   fandom   journal   worldbuilding   tv   aesthetic   films   emo   media   webcomic   cars   vocaloid   learning   space   test   fanfiction   business   news   cutecore   health   arts   stuff   math   fiction   culture   journaling   silly   etc   stories   baking   website   scifi   painting   crochet   cinema   cat   series   punk   diy   90s   graphics   3d   shows   football   archive   homestuck   goth   psychology   commissions   pixelart   artist   dance   comida   makeup   marketing   me   software   program   digitalart   creativity   dnd   indie   lgbt   sanrio   css   sport   lifestyle   graphicdesign   editing   metal   trans   characters   lgbtq   aboutme   friends   religion   plants   rpg   fanart   funny   guitar   streaming   cool   clothes   sonic   rock   roleplay   story   sewing   zines   deltarune   code   community   development   everything   entertainment   scene   languages   ttrpg   electronics   engineering   aesthetics   webcomics   comedy   study   reviews   weird   beauty   photos   javascript   blogs   vintage   cyberpunk   originalcharacters   hobbies   webcore   spirituality   gay   fnaf   hacking   social   thoughts   storytelling   vtuber   basketball   it   webdesign   fandoms   coffee   soccer   biology   pets   flowers   architecture   educacion   lore   oldweb   computer   project   weirdcore   undertale   discord   cosplay   moda   movie   creative   magic   japan   mlp   shop   language   shopping   book   alternative   clothing   informatica   ttrpgs   crafting   information   personalwebsite   radio   singing   nintendo   chat   astronomy   fitness   physics   gatos   vaporwave   experimental   blinkies   juegos   digital   websites   testing   birds   nothing   about   anything   wip   bugs   money   info   site   cybersecurity   research   witchcraft   tvshows   yaoi   band   japanese   theatre   animes   projects   frutigeraero   crypto   furries   occult   interests   sleep   sleeping   tecnologia   gamedevelopment   finance   html5   dolls   autism   profile   all   other   libros   television   poems   work   knitting   vampires   romance   fish   photo   visualnovels   collecting   puzzle   events   genshin   essays   tarot   dreams   transgender   linguistics   marvel   system   jogos   futbol   vr   mentalhealth   wiki   gothic   gym   astrology   resume   dancing   fanfic   toys   lain   aliens   peliculas   apps   skateboarding   animations   yuri   stamps   hiking   birthday   english   gyaru   drawings   app   intro   meme   rap   whimsy   cartoon   mystery   creepypasta   medicine   free   developer   coquette   windows   journalism   splatoon   bio   chess   modding   puzzles   family   python   popculture   webdevelopment   gamedesign   interactive   dog   touhou   robots   resources   mathematics   teaching   pixels   humor   osc   introduction   gallery   zine   dragons   a   musicals   dreamcore   piano   mythology   fnf   pizza   links   ocean   novels   hobby   characterdesign   jfashion   adventure   fortnite   blender   online   rp   studying   ghchs   myself   carrd   amor   cine   spanish   no   deportes   bl   traveling   audio   roleplaying   security   alt   vkei   style   pjsk   craft   recipes   stars   meow   objectshows   gifs   danganronpa   dark   bunnies   indiegames   bfdi   data   fansite   paranormal   law   pixel   hiphop   lol   christianity   shrine   foods   home   fotografia   plushies   utau   songs   breakcore   noise   privacy   communism   swag   running   wrestling   boardgames   pinterest   feminism   production   scenecore   twitch   volleyball   geography   zonelets   ffxiv   brasil   filmmaking   activism   tf2   collage   pictures   podcast   robotics   rpgs   graphic   jewelry   blue   socialmedia   death   filmes   tools   none   progamming   literatura   grunge   designing   vlog   dinosaurs   car   outdoors   cozy   travelling   bts   lesbian   3dmodeling   student   things   manhwa   hellokitty   educational   transformers   omori   dev   historia   vent   maths   livros   ecommerce   sharks   args   electronic   awesome   theater   stickers   anarchism   chemistry   f1   jpop   god   acting   novel   yumeship   tea   scratch   android   misc   80s   webdev   lolita   cafe   jesus   mario   store   girly   clowns   pop   girls   deporte   environment   realestate   jazz   starwars   draw   twine   computing   old   trains   pc   college   pastel   collection   vtubers   whatever   skating   mcr   dj   images   horses   videography   plurality   unblocked   yoga   artes   supernatural   retrogaming   construction   cyber   creepy   services   ecology   help   doom   baseball   programmer   multimedia   translation   escuela   videoediting   tumblr   flash   insects   persona   computerscience   gamer   animales   trading   dc   warriorcats   nerd   trinkets   event   programar   miku   southpark   lego   3dprinting   therian   kandi   weed   forum   lgbtqia   surrealism   hardware   skincare   weather   green   drama   chatting   tiktok   medical   swimming   tattoos   hi   salud   epic   techno   socialism   opensource   analog   bitcoin   sociology   yes   people   cultura   truecrime   monsters   sound   ropa   mangas   modeling   tabletop   ideas   economics   java   sketching   visualnovel   maps   kdrama   world   tcc   purple   edm   author   bsd   animanga   artwork   podcasts   freedom   angels   bands   hockey   vhs   fishing   colors   healthcare   restaurant   programas   writting   halloween   chill   vida   hardcore   otherkin   thrifting   homepage   js   plural   cleaning   academia   medieval   wedding   racing   egl   cricket   learn   bible   kirby   shoes   sculpture   conspiracy   tourism   terror   friendship   analysis   eating   knowledge   search   brazil   programacao   service   christian   kidcore   scary   videogaming   anthropology   otaku   webseries   yapping   creation   wellness   hair   magazine   text   ambient   sciencefiction   scrapbooking   library   nails   digitalmarketing   tennis   programa   retrogames   rats   enstars   graffiti   rants   hetalia   turismo   poesia   sustainability   general   aviation   women   frogs   surreal   sites   estudiante   alterhuman   ceramics   theology   liminal   homework   mods   harrypotter   did   gacha   depression   crocheting   creating   garden   analoghorror   water   university   curso   shitposting   networking   petz   tattoo   building   jjba   schoolproject   musicas   cryptids   cv   kdramas   genshinimpact   voiceacting   concerts   cycling   drugs   talking   glitch   academic   ghosts   erotica   quotes   3dart   writer   furniture   closedspecies   folklore   foss   shrines   fanfics   archives   cards   mobile   society   tutorials   selfship   vlogs   musicproduction   french   onepiece   seals   mylittlepony   mtg   notes   character   anarchy   play   illustrations   esoteric   moe   spiderman   performance   server   live   theory   soft   rpgmaker   dandysworld   truth   superheroes   content   estudio   conlang   review   escritura   ux   batman   dibujo   kids   articles   programs   handmade   guns   vampire   yumeshipping   startrek   camping   shoegaze   os   forsaken   sanat   programmation   neocities   company   glitter   crk   practice   quiz   daily   creativewriting   lostmedia   underground   blockchain   ia   doodles   geek   bot   oldinternet   youtuber   ultrakill   whimsical   bikes   decor   shitpost   animal   filosofia   species   musics   vibes   shoujo   originalcharacter   communication   commission   calculator   chaos   rhythmgames   songwriting   cs   disney   informacion   meditation   satire   vinyl   noticias   apple   sweets   instagram   church   solarpunk   training   industrial   todo   animating   scp   military   crime   musique   class   vrchat   blood   future   marxism   synthesizers   viajes   adhd   black   new   sims   revival   unblockedgames   stem   paganism   cryptocurrency   idols   party   house   randomstuff   zelda   vtubing   mha   more   evangelion   fotos   collections   multifandom   beach   spooky   desing   disability   facts   google   tadc   bass   overwatch   russian   instruments   espanol   exploration   gossip   embroidery   advertising   vegan   repair   rambling   visualkei   exercise   islam   programm   joke   dating   something   interactivefiction   beginner   geometrydash   magick   diario   tamagotchi   twitter   dungeonsanddragons   animalcrossing   rainbow   creatures   jeux   kink   designer   shifting   cheese   faith   red   cult   miriadax   ciencia   studies   finalfantasy   spiritual   zombies   warhammer   motorcycles   musik   argentina   css3   productivity   neopets   silliness   ddlc   videgames   naturaleza   developing   webring   miscellaneous   tips   entretenimiento   1   frontend   jobs   happy   tcg   opinions   numetal   club   edits   miniatures   au   halflife   musician   politica   jokes   cities   secret   paint   peace   self   cybercore   sea   woodworking   socials   tokusatsu   personalpage   drinks   archiving