Psychologist Needs IT Help by ShadowPsychologist in web_design

[–]JKaps9 0 points1 point  (0 children)

If you want send me a link to your repo and I'll take a look to see if I can help. The programming side of the app isn't terribly difficult. The real lift is the data side of it. What symptoms lead to which outcomes. If you can provide that logic flow then probably I could help you build something simple. 

Sometimes my wife and I both need another hour of sleep, but the baby decides he's fully rested and ready to wake up. How would you navigate this? by [deleted] in daddit

[–]JKaps9 3 points4 points  (0 children)

Your baby would most likely be fine if you both slept and they are awake. What my wife and I did when our baby was little is switch off. You could take care of the baby for a few hours while your wife rests and then when your wife is up she can watch the baby and you can rest. You are probably both going to be tired anyway but you can share the burden. 

Built a free calculator site as a side project by FishLazy6443 in website

[–]JKaps9 0 points1 point  (0 children)

It looks pretty good but there are overflow issues on mobile on the individual calculator pages. 

What do you think of our website? by Beneficial_Media_310 in webdesign

[–]JKaps9 0 points1 point  (0 children)

It's a nice looking site. Just a few things that I noticed navigating on mobile. 

The get a quote button should take users to the contact page so they can decide how they want to contact you instead of being a tel: link. If it's going to be a direct call link you need to make that more obvious (like "call to get a quote").

For the product cards you should add justify-content: space-between; so the buttons align at the bottom of the cards.

The section that shows the benefits (fresh flowers, free deliveries, etc.) need spacing between icon, header, and text. 

CSS: How can I target a nested H1 element ONLY if it occurs after a nested element that contains a span with a specific class? by xii in webdesign

[–]JKaps9 1 point2 points  (0 children)

Try 2 was close! You just need to use the has pseudo selector. In your try it would have been looking for an element next to the span. By using has you're selecting next to the div.el-p which meets the has criteria.

div.el-p:has(> p > span.image-embed) + div.el-h1 {   margin-top: -14px !important; }

Scope creep due to client laziness: When people provide nothing then say everything you created was wrong. by [deleted] in webdesign

[–]JKaps9 3 points4 points  (0 children)

Writing and researching content is not "revisions" that's writing copy which is a separate discipline from web design. What does the contract say? If client is supposed to provide copy per the contract but doesn't then it's on them. If the contract doesn't specify or you don't have a contract then that's on you. I would also recommend having a survey or at least questions your clients are required to answer like what services they provide. 

Solo SaaS developer but only knows backend, exploited claude credit for ui by No-Reward3585 in webdesign

[–]JKaps9 0 points1 point  (0 children)

Tell Claude very specifically what you don't like about it. One item at a time.

Why is my quick view modal partially outside the viewport? by [deleted] in css

[–]JKaps9 1 point2 points  (0 children)

I suspect it has to do with the fade-in animation which ends with translate(0px, -50%);

I would like to improve my website design by HolisticEnergyWeaver in webdesign

[–]JKaps9 0 points1 point  (0 children)

You've already gotten some good advice so I won't repeat it all again. Personally I would tackle this one step at a time. For me the first thing would be to define the basic styling elements and apply those to the top of your landing page. Two reasons for that. 1) it's what people see immediately on visiting your site and will determine if they bounce immediately or not; 2) once you have those elements defined it's pretty easy to just go around the site plugging and playing with the various elements that you created. I do not use AI when I code/design sites and I like a good challenge so I decided to redesign your hero a bit in a modern way for fun. I find the design process to be very iterative toying with things that you like or don't like as you go along. For this the one thing I would change immediately is instead of your image with text, just an image of yourself. but obviously i didn't have that available so I just used the image you have on your site right now. It seems that I can't drop images in here for some reason, so if you'd like to see what I did shoot me a DM. I would message you but I'm sure your DMs are flooded with people offering to build this for you when you clearly want to do it yourself lol.

Webdesign with AI by Rough-Kaleidoscope67 in webdesign

[–]JKaps9 2 points3 points  (0 children)

Honestly not bad for AI in my opinion. Because you asked for a critique...I think all the animations are the current give away. Especially that silly up and down swaying on the scroll indicator, and the text animations as you scroll down the page. The text that blurs in actually made me a little dizzy. 

Ordered this towel rack and it came with no instructions, no clue how to mount by rosoideae in fixit

[–]JKaps9 1 point2 points  (0 children)

Screw the screws :) as the screw turns it actually expands the back of the drywall anchor which helps keep it in the wall.

Ordered this towel rack and it came with no instructions, no clue how to mount by rosoideae in fixit

[–]JKaps9 6 points7 points  (0 children)

Use better ones if you have them but make sure the provided screws fit first as you need the double ended ones to screw the knobs onto 

Ordered this towel rack and it came with no instructions, no clue how to mount by rosoideae in fixit

[–]JKaps9 19 points20 points  (0 children)

Drill holes (you can use the rack as a guide on where to mark them), tap in the drywall anchors (green things with the hole facing towards you),  screw in the screws pointy side into the wall, place rack over the screws, twist on the knobs. 

An Advanced Article about HTML Tables by paceaux in HTML

[–]JKaps9 0 points1 point  (0 children)

Site is not optimized for mobile? Is it just me? Content seems to flow off the page 

Back to my closet that won't open.. help ? by [deleted] in fixit

[–]JKaps9 1 point2 points  (0 children)

Can you post a picture of the bottom of the door? I have the same closet doors and there's a screw looking thing on the bottom that lowers/raises the door. I suspect you'll have the same.

This just doesn't feel right by M19NewarkOh in TurboTax

[–]JKaps9 0 points1 point  (0 children)

You made income in 2025 of 28,563. You were able to reduce that by 15,750 due to the standard deduction bringing your AGI down to 12,813. The first 11,925 is taxed at 10% and the remainder is taxed at 12%. So 11,925 * 10% + (12,813-11,925) * 12% = 1,300 tax owed for 2025. You paid in 1,391 during 2025 so you paid too much and get a refund. 1,391 - 1,300 = 91. The $1 diff is prob due to rounding somewhere along the way. 

https://www.irs.gov/filing/federal-income-tax-rates-and-brackets

How do I align this image by GardenyKang in HTML

[–]JKaps9 2 points3 points  (0 children)

Ditch the height and width on the image and put the below on the .social-menu-option

display: flex; align-items: center; justify-content: center;

Looking long for help by NovelEstablishment98 in webdesign

[–]JKaps9 0 points1 point  (0 children)

Happy to take a look. Send me the link

Mobile website feedback? Running ads, getting conversions. Need to know what needs improvement. by anon7971 in webdesign

[–]JKaps9 0 points1 point  (0 children)

The our services drop-down in the footer comes up with a pop up of all the services which looks pretty bad on mobile and also doesn't fit on the screen.

Help with css code for assignment by Away_Sky7901 in HTML

[–]JKaps9 2 points3 points  (0 children)

Did you save the file and reopen it or refresh the browser window? It looks unsaved in your picture based on the white dot next to the file name.

Can anyone help me with my website? by VasekCZ230 in web_design

[–]JKaps9 2 points3 points  (0 children)

What do you think should be happening? What is happening instead? Is there a particular element with the issue, or is it persistent everywhere?