Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

HTML & CSS Hover over Text to display an image

I want when I hover over my text for the image to appear in the top left while the text is in the bottom left. I have it so now when I hover it moves the text underneath down and makes it difficult to navigate. When I change the padding it moves all the text with it.
HTML:
<div class="hover_img">
     <a href="indexx.html"><p>Look At This Photograph</p><span><img src="images/lookat-this2.gif" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>Canyon Daze</p><span><img src="images/arenamock-Recoverevd.jpg" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>Museum of Organic Shapes and Objects</p><span><img src="images/asset 4.png" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>1017 A L Y X 9SM</p><span><img src="images/alyxinvite.jpg" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>Bean Sans</p><span><img src="images/beansansthumbnail-02.png" alt="image" height="400" /></span></a>
  <a href="indexx.html"><p>Mutiny</p><span><img src="images/Mutiny_Ring.png" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>Cassette Tapes</p><span><img src="images/casette_tws-04.png" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>Pill Poppers</p><span><img src="images/pillpopcovermock.jpg" alt="image" height="400" /></span></a>
     <a href="indexx.html"><p>Tendencies</p><span><img src="images/22.jpg" alt="image" height="400" /></span></a>
CSS:
.hover_img {
   width: 100%;
    padding-left: %;
    padding-right: 10px 10px;
    font-size: 35px;
    line-height: 30px;
    letter-spacing: .2px;
    font-family: Sans;
}
.hover_img a { position:relative;
padding-left: 50;}
.hover_img a span { position:relative; display:none; z-index:1; }
.hover_img a:hover span { display:block; }
 

Latest posts

Buy us a coffee!

Back
Top Bottom