How to make my Multi-Page Photograph Gallery same width as my main 900 pixel width photo at the top?

Ah… that didn’t work, made it worse… need to find out where to place that.


.photo ul.topic li a.set {
  display: block;
  font-size: 11px;
  line-height: 30px;
  color: #000;
  text-decoration: none;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  background: #ccc;
  font-family: verdana, arial, sans-serif;
  padding: 0 2px;
  position: absolute;
  top: -31px;
  width: 20%;
  box-sizing: border-box;
.photo ul.topic > li:nth-child(0) a.set{left:0}
.photo ul.topic > li:nth-child(1) a.set{left:20%}
.photo ul.topic > li:nth-child(2) a.set{left:40%}
.photo ul.topic > li:nth-child(3) a.set{left:60%}
.photo ul.topic > li:nth-child(4) a.set{left:80%}

.photo ul.topic li a.set b br {
  display: none;
}