This should be fairly easy I would assume, though honestly I am still learning a lot about HTML and CSS
can someone explain to me why my text font goes away in this line of code whenever I replace the image
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="css\set-photography.css">
<div class="accordian">
<ul>
<li>
<div class="image_title">
<a href="#">KungFu Panda</a>
</div>
<a href="#">
<img src="http://thecodeplayer.com/uploads/media/3yiC6Yq.jpg"/>
</a>
</li>
<li>
<div class="image_title">
<a href="#">Toy Story 2</a>
</div>
<a href="#">
<img src="images/146.jpg"/>
I replaced the image for Toy Story 2 with my own image
yet the text for Toy Story 2 is gone
I sure can
It disapears in live view and on the website
It only happens when I replace the image as you can see on the right lower section of my code the image I replaced toy story with is <img src="images/146.jpg"/>
when I am coding it in split/live the text does not appear on the image to my right
Let me give you the full code I am using what I gave you was just a broken off piece
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="css\set-photography.css">
<div class="accordian">
<ul>
<li>
<div class="image_title">
<a href="#">Ordained</a>
</div>
<a href="#">
<img src="images/146.jpg" width="1400" height="933" longdesc="images/146.jpg"/>
</a>
</li>
<li>
<div class="image_title">
<a href="#">FDFDSFDFSDFS</a>
</div>
<a href="#">
<img src="images/img_3145.jpg"/>
</a>
</li>
<li>
<div class="image_title">
<a href="#">Ordained</a>
</div>
<a href="#">
<img src="images/259.jpg" width="1400" height="933">
</a>
</li>
<li>
<div class="image_title">
<a href="#">U</a>
</div>
<a href="#">
<img src="http://thecodeplayer.com/uploads/media/2rT2vdx.jpg"/>
</a>
</li>
<li>
<div class="image_title">
<a href="#">Cars 2</a>
</div>
<a href="#">
<img src="http://thecodeplayer.com/uploads/media/8k3N3EL.jpg"/>
</a>
</li>
</ul>
</div>
</script>
</body>
</html>

so same scenario as you can see the last two images hold the text
but the images I have replaced do not want to display the text
There is no <head> tag in your document. There is no start of <body> tag. There's a redundant closure to </script> tag while it is not required.
Change your code to this:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css\set-photography.css">
</head>
<body>
<div class="accordian">
<ul>
<li>
<div class="image_title"> <a href="#">Ordained</a> </div>
<a href="#"> <img src="images/146.jpg" width="1400" height="933" longdesc="images/146.jpg"/> </a> </li>
<li>
<div class="image_title"> <a href="#">FDFDSFDFSDFS</a> </div>
<a href="#"> <img src="images/img_3145.jpg"/> </a> </li>
<li>
<div class="image_title"> <a href="#">Ordained</a> </div>
<a href="#"> <img src="images/259.jpg" width="1400" height="933"> </a> </li>
<li>
<div class="image_title"> <a href="#">U</a> </div>
<a href="#"> <img src="http://thecodeplayer.com/uploads/media/2rT2vdx.jpg"/> </a> </li>
<li>
<div class="image_title"> <a href="#">Cars 2</a> </div>
<a href="#"> <img src="http://thecodeplayer.com/uploads/media/8k3N3EL.jpg"/> </a> </li>
</ul>
</div>
</body>
</html>
The first stop for layout problems should always be the validator - http://validator.w3.org - which would have illuminated these issues in about 1 second. It makes no sense to try to debug a layout that is based on invalid HTML.
I got the code directly from here
http://thecodeplayer.com/walkthrough/make-an-accordian-style-slider-in -css3
Which seems to run just fine as it is
I am just trying to figure out how to use that idea and keep the font from disapearing
I would have thought it would be easy to just copy it over and link it directly to the CSS that comes with it
I tried what you posted Suda but it just doesnt seem to work :\
North America
Europe, Middle East and Africa
Asia Pacific