Welcome to my Website!
List of problems(solved or unsolved):
First PROBLEM:
FIX the footer image (why are there some pixels to the right). ANSWER: it was the width in css, the image is too large to even be contained. Ah, no limits
Second PROBLEM:
How the wack does the css file can be shown in the index.html?
First step: Use the link tag like this => link rel="stylesheet" href="style.css?id=2"
Second step: Change the id number which is 2 to any number (I like changing from 1 to 2)
Note: In reddit, someone user mentioned this problem. So yes, I think it was because neocities takes time to update the css file, otherwise, their servers would be saturated with data
Third PROBLEM("solved" in 21/04/2025):
Fixing the header menu (this took me long enough). The problem was setting the nav with the id tag of menu instead of a separate div and making #menu have width: 100%
4th PROBLEM:
Double element placement. Literally a curse, I dont remember much from html+css however dang, man. Those tags sure hurts. First you got a width of 100% and another of width of 95%, god knows where. Lol, well better to learn it sooner than later in a bigger project
5th PROBLEM:
Learn that for CSS debugging we can use this method:
.header, #menu, #menu ul {
border: 1px dashed red;
}
to test if the element of CSS is working properly (indeed true MVPs). Post-note: it seems it works differently for this page compared to index.html
List of things done:
- Change font's color (barely readable)
- Removed dropdown (found it inefficient)
- Navbar now works in every single subpage of this website, enjoy! (finished 1/05/2025)