Click here to Skip to main content
15,892,517 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<table>
<tr>
<td>[thethe-image-slider name="slide1"]</td>
<td><img src="http://www.getithome.in/wp-content/uploads/2012/07/250+-+Copy.jpg" /></td>
</tr>
</table>
<table>
<tr>
<td><img src="http://www.getithome.in/wp-content/uploads/2012/07/2502+-+Copy+2.jpg" /></td>
<td>[thethe-image-slider name="Slider2"]</td>
</tr>
</table>
<table>
<tr>
<td>[thethe-image-slider name="Slider3"]</td>
<td><img src="http://www.getithome.in/wp-content/uploads/2012/07/2502+-+Copy+2-2.jpg" /></td>
</tr>
</table>

<table>
<tr>
<td><img src="http://www.getithome.in/wp-content/uploads/2012/08/Untitled-3.jpg" /></td>
<td>[thethe-image-slider name="Slider4"]</td>
</tr>
</table>

<table>
<tr>
<td>[thethe-image-slider name="Slider5"]</td>
<td><img src="http://www.getithome.in/wp-content/uploads/2012/07/2502+-+Copy+2-2.jpg" /></td>
</tr>
</table>
<table>
<tr>
<td><img src="http://www.getithome.in/wp-content/uploads/2012/08/250-Copy.jpg" /></td>
<td>[thethe-image-slider name="Slider6"]</td>
</tr>
</table>
<style type="text/css">
    #one, #two {
        float: left;
    }
</style>

<div id="one"><img src="http://www.getithome.in/wp-content/uploads/2012/08/250-Copy.jpg" /></div>

<div id="two"><img src="http://www.getithome.in/wp-content/uploads/2012/08/250-Copy.jpg" /></div>
<style type="text/css">
    #one, #two {
        float: left;
    }
</style>
<br>
<br>
<div id="one"><img src="http://www.getithome.in/wp-content/uploads/2012/08/250-Copy.jpg" /></div>




This is my code. You can see the output here at http://www.getithome.in


The problem is that i can see the border line.
I want to remove these border lines.

Please help.
Thanks in Advance :)
Posted

Had a look at the live page - clearly it's already utilizing CSS. You need to remove the border property from a couple of rules to get the look I think you're after.

Have a look inside style.css, you want to make changes to the following rules:
Line numbers given by Chrome - they may/may not be accurate.
Just remove or comment out /* excluded_rule here */ any reference to border in the below styles.

style.css - line 639
CSS
.entry img, img.thumbnail {
padding: 5px;
border: 1px solid #E6E6E6;
background: #F8F8F8;
}


style.css - line 1224
CSS
table {
border: 1px solid #E6E6E6;
border-right: 0;
border-bottom: 0;
width: 100%;
border-collapse: separate;
margin-bottom: 1em;
}


style.css - line 1225
CSS
table td, table th {
border-right: 1px solid #E6E6E6;
border-bottom: 1px solid #E6E6E6;
padding: 4px 8px;
vertical-align: top;
}
 
Share this answer
 
Comments
rorrykeys 1-Aug-12 8:53am    
amazing stuff! It worked!! :D Thanks a lot!
So add some CSS to style your table.
http://www.w3schools.com/css/css_table.asp[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900