Tribute Page issue or bug

I don’t know what am i doing wrong, i already set the things of the images that tell me to change. i think it’s bug.

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

#image { 
  width:700px; 
  height:auto;
  display:block;
  margin:auto;
  max-width:100%;
  border-radius:15px;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Build a Tribute Page

Link to the challenge:

Hi,
please paste your code on the editor so we could have a look at it

i’ve changed it. it says that the img should have a max width of 100%, and should be centered within its parent

i’ll need to see all your code so i can paste it on my editor and see what’s wrong

HTML:

 <main id="main">
      
      <div id="title">
        MUHAMMAD ALI
        <br>
        GREATEST.OF.ALL.TIME
      </div>
      
      <div id="img-div"><img id="image"src="https://content.api.news/v3/images/bin/f3e024e0f1063afd90e1c94664862e10?width=768" alt="Muhammad Ali" ;>
      <div id="img-caption">
      Heavyweight champion Muhammad Ali stands over fallen challenger Sonny Liston, shouting and gesturing shortly after dropping Liston with a short hard right to the jaw on May 25, 1965, in Lewiston, Maine. The bout lasted only one minute into the first round. 
      </div>
      </div>
      
      

      <div id="tribute-info">
        <ul>
          
          <li><span class="date">Jan. 17, 1942 :</span> Cassius Clay is born in Louisville, Kentucky.</li>
          
          <li><span class="date">Sept. 5, 1960 :</span> After winning three bouts in the qualifying round at the Rome 1960 Olympic Games, Cassius Clay defeats Zbigniew Pietrzykowski, of Poland, for the gold medal. Clay was just 18 when he won the gold medal by a decision.</li>
          
          <li><span class="date">Feb. 25, 1964 :</span> At 22, Ali defeats champion Sonny Liston in a technical knockout to win the world heavyweight boxing crown in Miami. </li>
          
          <li><span class="date">March 6, 1964</span>: Cassius Clay officially changes his name to Muhammad Ali. Elijah Muhammad, a leader in the Nation of Islam, made a radio broadcast about the name change. Muhammad means “one worthy of praise.” Ali is the name of a cousin of a prophet. </li>
          
          <li><span class="date">Aug. 14, 1964</span>: Ali married Sonji Roi. The marriage later ends in divorce. </li>
          
          <li><span class="date">April 1967 :</span> Ali refuses to join the U.S. Army citing his opposition to the Vietnam War. He is subsequently barred from boxing and his title was stripped.</li>
          
          <li><span class="date">Aug. 17, 1967 :</span> Ali married Belinda Boyd. After the wedding, she converted to Islam. The marriage later ends in divorce. </li>
          
          <li><span class="date">Oct. 26, 1970 :</span> Ali is reinstated into boxing. </li>
          
          <li><span class="date">March 8, 1971 :</span> “The Fight of the Century” takes place between Ali and Joe Frazier in New York’s Madison Square Garden. Frazier won by a unanimous decision in 15 rounds. The bout marked Ali’s first defeat of his pro career.</li>
          
          <li><span class="date">April 19, 1971 :</span> The legal fight under the case name, Cassius Marsellus Clay, Jr. v. United States was argued before the U.S. Supreme Court.</li>
          
          <li><span class="date">June 28, 1971 :</span> The U.S. Supreme Court reversed Ali’s 1967 conviction. </li>
          
          <li><span class="date">Jan. 28, 1974 :</span> Ali and Frazier have a rematch in Madison Square Garden. This time, Ali won in 12 rounds. </li>
          
          <li><span class="date">Oct. 30, 1974 :</span> The famed “Rumble in the Jungle” fight takes place in Zaire and Ali knocks out George Foreman in the eighth round. Ali famously tires out Foreman using the “rope-a-dope” strategy. </li>
          
          <li><span class="date">Oct. 1, 1975 :</span> Ali took on Frazier for a third (and final) time, this time in the Philippines. Ali beat Frazier in a TKO in the 14th round in what is forever known as “The Thrilla in Manila”.</li> 
          
          <li><span class="date">Oct. 1, 1975 :</span> Ali’s biography, “The Greatest: My Own Story,” by Richard Durham, is published. Among the topics is in the book is the mention that Ali threw his Olympic gold medal into the Ohio River. There have been varying reports about Ali losing his medal since. </li>
          
          <li><span class="date">Dec. 30, 1977 :</span> Ali’s daughter, Laila, was born. She is the daughter of Ali and his third wife, Veronica Porsche. Laila went on to become a professional boxer. </li>
          
          <li><span class="date">Feb. 15, 1978 :</span> Ali loses to 1976 Olympic champion Leon Spinks in 15 rounds by a split decision. </li>
          
          <li><span class="date">Sept. 15, 1978 :</span> Ali avenges his loss earlier in the year and became the first three-time world heavyweight champion by defeating Spinks in the Louisiana Superdome. </li>
          
          <li><span class="date">June 27, 1979 :</span> Ali announces his retirement. </li>
          
          <li><span class="date">Oct. 3, 1980 :</span> Ali comes out of retirement to face Larry Holmes in Caesars Palace in Las Vegas. Holmes overmatched Ali, and Ali’s corner stopped the fight after 10 rounds. </li>
          
          <li><span class="date">1984 :</span> Although Ali had shown some signs he might have Parkinson’s disease, a degenerative disease of the brain, leading up to the Holmes fight in 1980, he officially is diagnosed with the ailment. </li>
          
          <li><span class="date">Nov. 19, 1986 :</span> Ali marries his fourth wife, Yolanda “Lonnie” Williams. </li>
          
          <li><span class="date">July 19, 1996 :</span> Ali lights the Olympic cauldron during the Opening Ceremony for the Atlanta 1996 Olympic Games. He also received a replacement gold medal for the one he won in 1960. </li>
          
          <li><span class="date">June 3, 2016 :</span> Ali dies at age 74 in Phoenix, after being hospitalized with respiratory issues.</li>
      
        </ul>
      </div>

      <div id="bottom">
        <div id="bot-content">read more about this incredible human being on his 
        <a id="tribute-link" href="https://en.wikipedia.org/wiki/Muhammad_Ali" target="_blank">Wikipedia entry</a> .</div>
      </div>
      
      </main>

CSS:

body {
  background:linear-gradient(260deg, gray, #0f0f0f ,black, gray );
  color:white;
}

#title{
  width:95vw;
  height:80px;
  margin:10px;
  font-size:30px;
  text-align:center;
  padding-top:10px;
  line-height: 1.6;
  padding-bottom:10px;
}

@media only screen and (max-width: 700px) {
  #title {
     font-size:20px;
     overflow:hidden;
  }
}


#img-caption{
  padding:20px;
  text-align:center;
  font-size:20px;
  line-height: 1.6;
}

@media only screen and (max-width: 700px) {
  #img-caption {
     font-size:15px;
  }
}

#image { 
  width:700px; 
  height:auto;
  display:block;
  margin:auto;
  max-width:100%;
  border-radius:15px;
}

@media only screen and (max-width: 700px) {
  #image {
     width:300px; 
      height:auto;
      display:block;
      margin:auto;
      border-radius:15px;
  }
}

#tribute-info{
  width:83vw;
  height:auto;
  margin:auto;
  padding-left:5vw;
  padding-right:5vw;
  padding-top:1vw;
  padding-bottom:1vw;
background-color:black;
  border-radius:10px;
  opacity:0.8;
}

.date{
  font-weight:bold;
  color:gray;
}

ul li{
  margin:40px;
  font-size:25px;
}

@media only screen and (max-width: 700px) {
  ul li {
     font-size:20px;
  }
}

#bottom{
  width:fill;
  height:60px;
  margin-top:10px;
  padding-left:5vw;
  padding-right:5vw;
  padding-top:1vw;
  padding-bottom:1vw;         
  background-color:black;
  opacity:0.8;
  display:block;
  border-radius:10px;
}

#bot-content{
  text-align:center;
  font-size:25px;
  padding-top:10px;
  padding-bottom:10px;
  }

@media only screen and (max-width: 700px) {
  #bot-content{
     font-size:20px;
     overflow:hidden;
  }
}

Hi to everyone i´m having a problem with the tribute page.
it´s giving to me this two hints "* Your #image should have a max-width of 100%.

Your img element should have a display of block ".
And this is what i´ve done, i don´t know where is the problem

img{
  display: block;
  max-width:100%
}

Can you provide more of your code?

><div id="img-div">
    <a id="tribute-link" target="_blank" href="https://www.bbvaopenmind.com/tecnologia/visionarios/tim-berners-lee-y-el-origen-de-la-web/"><img id="image" class="responsive-img" src="https://www.bbvaopenmind.com/wp-content/uploads/2015/06/BBVA-OpenMind-tim-berners-lee-1-1.jpg" alt="Tim presentado la WEB y su navegador"></a> 
   <figcaption id="img-caption">Presentacion de Explorador y el protocolo HTML.</figcaption> 
    </div>

Thats the HTML Part of the image thing

.responsive-img { /* imagen responsive */
  max-width:100%;
  display: block;
}
img{
  display: block;
  max-width:100%
}

And this is the CSS thing

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

.responsive-img { /* imagen responsive */
  max-width:100%;
  display: block;
}
img{
  display: block;
  max-width:100%
}
<div id="img-div">
    <a id="tribute-link" target="_blank" href="https://www.bbvaopenmind.com/tecnologia/visionarios/tim-berners-lee-y-el-origen-de-la-web/"><img id="image" class="responsive-img" src="https://www.bbvaopenmind.com/wp-content/uploads/2015/06/BBVA-OpenMind-tim-berners-lee-1-1.jpg" alt="Tim presentado la WEB y su navegador"></a> 
   <figcaption id="img-caption">Presentacion de Explorador y el protocolo HTML.</figcaption> 
    </div> 

i´ve did this tribute page like 3 times and always give me the same thing with the image

It does not look like you are linking your CSS.

thanks, what a dumb thing was having me on problems xdddd

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.