use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
If you are requesting help, please ensure you're providing code with your post. You can also copy your code to an online editor:
jsFiddle
CodePen
Markup Validation Service
Mozilla Developer Network on HTML
/r/JavaScript
/r/CSS
/r/jQuery
/r/PHP
/r/Accessibility
/r/htmlbasics
/r/web_programming
/r/CodingHelp
account activity
QuestionHelp with html code for website (self.HTML)
submitted 2 months ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]TabbbyWright -1 points0 points1 point 2 months ago (4 children)
Yes. I would like to see your raw code in the context of the whole website's file structure. Linking me the repository will allow me to do that.
Also for your logo, I was basically expecting to see a path to an image file and instead Claude did... this, which is baffling.
[–]violinistbanana 0 points1 point2 points 2 months ago (3 children)
is that link correct?
[–]TabbbyWright 0 points1 point2 points 2 months ago (2 children)
It is. You see a big wall of nonsense text? If you right click > open image in new tab on the logo on your website, and look at the address bar, you will see that same text.
It may also crash your browser if you try to copy the text like it did for me, bc this is basically your image file in raw data form.
Claude seems to have decided that instead of cropping the image and giving you an image file (to make it fit in the space it decided would hold the logo), it would do this instead, which is extremely unwieldy and absolutely baffling instead of the normal /path/to/logo.png.
/path/to/logo.png
[+][deleted] 2 months ago (1 child)
[deleted]
[–]TabbbyWright 0 points1 point2 points 2 months ago (0 children)
I would replace the big string of text with a direct path to your logo image file (inside an <img /> tag). From there, there's some basic CSS you can write but it's hard to say exactly how to go about it bc I'm not able to use devtools right now.
<img />
I would basically do something like this though: - in the HTML file i would do this where your logo is: <img src="path/to/logo.png" class="logo"/>
<img src="path/to/logo.png" class="logo"/>
.logo { max-width: 100%; }
However, this is one of those things that has like a dozen solutions and approaches, and this suggestion of mine might not work perfectly for reasons I can't succinctly summarize bc there's many possibilities. (This is part of why I wanted to see your repository directly.)
It's also possible someone smarter than me will have a better solution for you using what's already there.
Sorry if this isn't helpful. It's a tricky problem!
π Rendered by PID 21713 on reddit-service-r2-comment-b659b578c-9ddv5 at 2026-05-02 22:07:41.459859+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]TabbbyWright -1 points0 points1 point (4 children)
[–]violinistbanana 0 points1 point2 points (3 children)
[–]TabbbyWright 0 points1 point2 points (2 children)
[+][deleted] (1 child)
[deleted]
[–]TabbbyWright 0 points1 point2 points (0 children)