Need some help with the Tribute Page Project

EDIT - ISSUES RESOLVED

In the tribute project, I am stuck with the following issues:

  1. Aligning the caption to the right and making it stick to the image and have a white background that spans exactly to the width of the image.

  2. Aligning the unordered list and the child line elements to the center.

  3. Reducing the width of the blockquote and some other textual elements

Any help or hint would be greatly appreciated.

For the caption alignment you may use in css:

figcaption{
  text-align: right;
}
1 Like

For aligning the ul you may use:

ul {
  display: table;
  margin: 0 auto;
}
1 Like

Thank you so much @sorinr