Looking for feedback on my blogging website

Hello, I am looking for any feedback on the content, readability, design or anything would greatly be appreciated . Also I would like some feedback on styling my Tables of Content. Should I do list-style: none; on all the li elements or just the children of the li elements? https://blogbydave.netlify.app/blog/
40 Replies
ἔρως
ἔρως2w ago
this ... is scary
No description
ἔρως
ἔρως2w ago
putting aside the choice of font, the headers aren't big enough and they all look the same
No description
ἔρως
ἔρως2w ago
or waaaaaaaaaaaaaaaaaay too tiny
No description
ἔρως
ἔρως2w ago
this would be great as a wizzard with steps or an article per problem and bigger titles
ἔρως
ἔρως2w ago
you also don't style these, and don't add a link to jump to the header, which makes keyboard-only navigation a chore
No description
ἔρως
ἔρως2w ago
the images also don't open in a new window or a zoomable pannable dialog, which is stupidly useful for cellphones
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Gotcha, that would make sense. I also found that all my blogs to long. Yeah navigation is a chore. Jumping back to the Header is a good idea. I wonder how I could implement that style wise. Maybe a link on the right side of the site?
ἔρως
ἔρως2w ago
yup, a link on the left or right would help a lot
Takyon_is_Online
Takyon_is_OnlineOP2w ago
You mean click on the image and the image opens in a new window? Also you got examples of zoomable pannable dialog?
ἔρως
ἔρως2w ago
either a new tab or just how those sites do when you click on an image and it opens separatedly you know, like how discord does
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Oh ok, I gotcha now. For my tables of content should I remove the list-style? I mean set it to none.
ἔρως
ἔρως2w ago
no, but you should do better use of css counters
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Oh ok, I'll look into that
ἔρως
ἔρως2w ago
you know what you could add that almost nobody else does? collapsable checkable titles so we can keep track of which step we've done
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Yeah, I could look into that. I don't know how to code it but there should be a video on it out there maybe.
ἔρως
ἔρως2w ago
a simple checkbox maybe a <details> too
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Well I am using <details> already. What functionality with <details> do you think I can add?
ἔρως
ἔρως2w ago
the collapsed headers that hide the content
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Oh ok, I'm not that good with CSS yet but I will give it a shot. Gotta search some documentation on <detail> or find a collapsable checkable title tutorial on Youtube. I'll come back and ask for help if I need it, once I give it an honest shot.
ἔρως
ἔρως2w ago
you can make a quick proof of concept with just a checkbox inside the title of the <details> but try it, give it a good shot
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Ok so I found a reference that I would like to use for the main header navigation. I want it to be a button that points upwards and when you click it, it will bring you to the top of the page. Like this website here. https://css-tricks.com/snippets/css/a-guide-to-flexbox Do you know if I have to use Javascript to accomplish this? This is all I could gather from developer tools
Chris Coyier
CSS-Tricks
CSS Flexbox Layout Guide | CSS-Tricks
Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible properties for the parent element (the flex container) and the child elements (the flex items). It also includes history, demos, patterns, and a browser support chart.
No description
No description
ἔρως
ἔρως2w ago
that's just a <details> tag if you don't want to do all the links manually, for the headers, you can just use javascript to generate the links and everything or do it server-side
Takyon_is_Online
Takyon_is_OnlineOP2w ago
You mean this button at the bottom right of the website? I didn't see a <details> tag in the inspect. Or are you talking about <details> tag for my own website?
No description
ἔρως
ἔρως2w ago
the titles on that link
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Oh ok, I was referring to the button. For the website that I linked do you think that would be a good idea if I did my titles like that too? That's the collapsable title think you were talking about right?
ἔρως
ἔρως2w ago
it is the button pointing up?
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Yeah you have to click on the black sidebar to get it to appear I think? I was asking if I need to do Javascript in order to do something like that
ἔρως
ἔρως2w ago
no, i think you can do it with just css, using scroll-based animations
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Ok, and you said I can write a JS script that will grab the links for me and apply the <details> element on it?
ἔρως
ἔρως2w ago
no, you can write some js to generate the links, or whatever you do for the menu on the side
Takyon_is_Online
Takyon_is_OnlineOP2w ago
I use a plugin for eleventy so I have the links for the headers generated already. That's how I got the Tables of Content
ἔρως
ἔρως2w ago
then try to find a plugin or write your own
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Hello, hope you don't mind me messaging again but I found out something that could help me make the new window images. I think it's called a modal image. I tried following Kevin's Powell video on it but I got confused on how I could apply that technique with an image. Since he uses it as a dialogue button https://youtu.be/TAB_v6yBXIE?si=GL5fY-OwQqS5o7YF
Kevin Powell
YouTube
dialog = the easiest way to make a popup modal
Ever needed to make a modal? Well, we have a native HTML element that does the job with the dialog element! It does a lot of things out of the box that are really awesome, so let’s see how it works! 🔗 Links ✅ Codepen: https://codepen.io/kevinpowell/pen/KKyOYvM ✅ The polyfill: https://github.com/GoogleChrome/dialog-polyfill ✅ a11y modal: htt...
ἔρως
ἔρως2w ago
well, instead of showing text, you can just have an image inside that's literally it
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Something like this? <dialog class="modal" id="modal"> <img src="/assets/blog/blog-1-installation-method-1.png" alt=""> </dialog>
ἔρως
ἔρως2w ago
basically and a button to close it
Takyon_is_Online
Takyon_is_OnlineOP2w ago
This will need to be done for every image? Wrap a <dialog> class on it? Is there a way for it to be done automatically? Maybe through Javascript?
ἔρως
ἔρως2w ago
you can generate it server-side you can do it for just a single image
Takyon_is_Online
Takyon_is_OnlineOP2w ago
Hello I did figure out how to create modal images on my site thanks. I have a problem with my image not displaying fully in container eventhough I gave my image the property of object-fit: contain;
.myImg{
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
display: inline-block;
vertical-align: top;
max-height: 34.375rem;
overflow: hidden;
}
.myImg:hover {
opacity: 0.7;
}
.myImg img{
max-width: 100%;
object-fit: contain;
}
.myImg{
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
display: inline-block;
vertical-align: top;
max-height: 34.375rem;
overflow: hidden;
}
.myImg:hover {
opacity: 0.7;
}
.myImg img{
max-width: 100%;
object-fit: contain;
}
https://github.com/DaveSamuels1998/Dave-Samuels-Blog https://blogbydave.netlify.app/blog/2025-01-23-enable-administrator-account-vmware-network-adapter-settings-creating-static-ip-address-deleting-user-accounts-without-server-manager-installing-rsat-tools/
GitHub
GitHub - DaveSamuels1998/Dave-Samuels-Blog
Contribute to DaveSamuels1998/Dave-Samuels-Blog development by creating an account on GitHub.
ἔρως
ἔρως2w ago
instead of sizing the container, size the image

Did you find this page helpful?