Itās looking like a classic 00s layout now, I like ![]()
Thanks. Iāve got all the templates updated; Iām just double-checking the pages now.
I really like how my homepage looks now. The other pages still need some work.
It isnāt mobile responsive, sadly. I donāt really know how to do that yet. Youāll have to zoom out to see the whole thing. Manatee is sorry. ![]()
Do you have the following in <head>?
<meta content="width=device-width, initial-scale=1" name=viewport>
Iāll check later. Thanks.
you have <meta content="width=device-width, initial-scale=1" name=viewport> set already ![]()
to get this look
you need to change your widthās to max-width
e.gā¦
body {
max-width: 1000px;
}
.titlepageheader {
max-width: 500px;
}
.menu {
max-width: 500px;
}
add something like this to stack the manateeās above and below the menubox element on smaller screens
/* Add media query for smaller screens */
@media (max-width: 768px) {
.menubox {
flex-direction: column;
}
.menu, .menubox img {
max-width: none;
padding: 10px;
}
}
Ideally, Iād like to eventually have a fully-fledged mirror of my site on Neocities. But for now? A āprofileā-like page will have to do! ![]()
It would be nice if theyād support rsync over SSH for donors. WebDAV is just too janky.
new summery layout iāve been working on is liveāi had initially planned a completely different direction but this just felt right.
Moved my āsecret pagesā, which werenāt really that secret in the first place but were a discoverability disaster, to the about section.
This wasnāt something I did today, but recently. If youāre visiting starbreaker.org from a laptop or desktop, youāll see Iāve implemented a three-column layout. As @fLaMEd suggested, itās very much peak early 2000s web design, but with Flexbox and not the godawful CSS or tables people used to implement this design before Flexbox became part of the standard.
PS: If youāve been there before, you might have to force-refresh the page because of cached stylesheets.
Ok, just looked at it on my wiiiiiide screen, a classic max-width wrapper may help or if you donāt want that, putting a max-width on your <p> tags would help with readability. Some of those paragraphs need 180ā head rotation to read ![]()
Whatās your aspect ratio? 21:9 ultra-wide?
Maybe adding this will help.
@media (min-width: 1366px)
{
html {
font-size: calc(16px + 0.390625vw);
}
.flex-nav, .flex-aside {
flex: 0 0 20%;
}
}
@media (min-width: 1920px)
{
.flex-nav, .flex-aside {
flex: 0 0 25%;
}
}
Got the font-size part from Holy Grail 3 Column Responsive Layout (CSS Grid & Flexbox).
Did a major rehaul of my page on supernumerary rainbows the small thin rainbows that are sometimes seen right under the primary bow :3 my prior information on which waves overlap was incorrect, but its now fixed with more cool diagrams
Iāll let you know when Iām back on the desktop ![]()
https://flamedfury.com/ now displays a random song lyric on page load.
TODO: no javascript fallbackā¦
Do you have access to PHP? Easy to do it that way, you wouldnāt have to rely on JS at all.
Edit: couldnāt resist (had to bowlderise one word to get through language filters)
<small id="quote">
<?php
$rnd = array();
$rnd[] = "Come on over, do the twist";
$rnd[] = "Overdo it and have a fit";
$rnd[] = "Love you so much it makes me sick";
$rnd[] = "Beat me out of me";
$rnd[] = "She keeps it pumpin' straight to my heart";
$rnd[] = "Nature is a wh0re";
$rnd[] = "With the lights out, it's less dangerous";
$rnd[] = "I'm so happy, 'cause today I found my friends";
$rnd[] = "It's okay to eat fish 'cause they don't have any feelings";
$rnd[] = "Love myself better than you";
$rnd[] = "I know it's wrong, so what should I do?";
$rnd[] = "Won't you believe it? It's just my luck";
$rnd[] = "Would you believe me when I tell you, you're the queen of my heart?";
$rnd[] = "She said, she'd take me anywhere";
$rnd[] = "Chokin' on the ashes of her enemy";
$rnd[] = "Armed and dangerous, ain't too many can bang with us";
echo $rnd[rand(0,count($rnd)-1)];
?>
</small>
Thanks for this!! Iāll tuck it away for a later date. I do have access to PHP but itās not part of my current stack.
What Iāll end up doing is just have a single quote ready to load if JS is disabled :)

