HTML Buttons Line Problem

Associate
Joined
5 Dec 2008
Posts
1,909
Location
London
I am making a website and have found a problem:

zy6983.jpg


I am new to HTML and am wondering what I can do to get rid of the black lines in between the navigation buttons. Here is my HTML code:


Code:
<div class="navigationBar"> 
             
  <a href="home.html"><img src="Images/home.png" width="138" height="41" alt="Home">
   
  <a href="residents.html"><img src="Images/residents.png" width="138" height="41" alt="The Residents">
  
  <a href="farm.html"><img src="Images/farm.png" width="138" height="41" alt="Farm">
  
  <a href="contact.html"><img src="Images/contact.png" width="138" height="41" alt="Contact">
  
</div>

Here is my CSS code:

Code:
.navigationBar
{
    text-align: center;
    padding: 10px;
}

Thank you.
 
Last edited:
Back
Top Bottom