I am stuck on the first part of the layout section of my tribute page. everything else has passed. I will post the link and I am sure it is something simple but for the life of me I cannot see it.
Hey @coded-carbon. You have wrong link to your logo image. When you’re on the site with your logo click left mouse button on the image and choose “copy image address” (probably, I have different native language). Also, you should add display=block; and then margin: 0 auto; (in .responsive-img class)(top and bottom margin can be different of course). Image is not block element , it’s inline element by default and because of that you’re unable to center it.
And also:
<div id="img-caption">
should be under your image if you want to describe the picture.
And in:
<a id="tribute-link" target="_blank" href="https://twitter.com/codedcarbon" </a>
<a id="tribute-info" this links to Coded Carbon Twitter </a>
You forgot closing “>” in a tag. Anchor should look like: <a id="id name" target="_blank" href="your twitter address"> Your sentence (for example: this links to Coded Carbon Twitter) </a>
or you can nest it in paragraph:
<p><a id="id name" target="_blank" href="your twitter address"> Your word (for example: this ) </a> links to Coded Carbon Twitter </p>
Thank you so much for taking the time to respond, I am going to implement these changes and let you know how I get on. I appreciate you and hope your day is giving you what you need.
copy image address worked I can see that my issue was clicking on the profile picture and copying the link that way, I can see the language is vastly different. again, many thanks as I don’t think I would have realised that my route to the image was the issue.