Edrol97
Bronze Coder
Hi all,
I'm having a bit of a tricky time figuring out what I'm doing wrong here. I'll attach my code up to the point of the problem. All other captions are the correct length apart from one where it omits the last 3 words, and I'm not sure why as there is no difference between each of the other div sections in my code. I've put in a div class for title text and I'm not sure if that might be what's causing the issue.
I'm having a bit of a tricky time figuring out what I'm doing wrong here. I'll attach my code up to the point of the problem. All other captions are the correct length apart from one where it omits the last 3 words, and I'm not sure why as there is no difference between each of the other div sections in my code. I've put in a div class for title text and I'm not sure if that might be what's causing the issue.
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Image carousel</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>The Headlines</h1>
<div class="container">
<img src="img/Slide%20away.png" alt=" "width="300px" onclick="LaunchLightbox()">
</div>
<div class="slide-show_container">
<div class="next_button" onclick="NextImage()" onclick="cursor:pointer">⟹</div>
<div class="previous_button" onclick="PreviousImage()">⟸</div>
<div class="close_button" onclick="CloseLightbox()">☒</div>
<div class="image_slide" onclick="slides()"></div>
<div class="image_slide">
<img src="img/BA Exhibition View.png" width="400px">
<div class="title_text">Politics 24/7?</div>
<div class="caption_text">Come in. Take a seat! Make yourself at home, but something doesn't
feel quite right
</div>
</div>
<div class="image_slide">
<img src="img/Truly Brexish Summer.jpg" width="400px">
<div class="caption_text"> A display for the BCX 2019 show at the Bentall Centre. An ironic
party in Brexit's dishonour</div>
</div>
<div class="image_slide">
<img src="img/New Contemps 2019.png" width="400px">
<div class="title_text">Boris Can't Get Clean, however much he tries</div>
<div class="caption_text">Into the Gallery at South London Gallery, Leeds Art Gallery and The RA</div>
</div>