Hi,
How can I remove borders from images and make tables invisible, preferably on a per page basis.
Thank you,
Tim
Hi,
How can I remove borders from images and make tables invisible, preferably on a per page basis.
Thank you,
Tim
Hi,
Any images in specific? Do you have an example of the tables you'd like to make invisible? This way I can give you more specific instructions.
hi, here is an example
Hey,
1) In style2.css change:
td {
border-right: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
background: #fff;
color: #777;
}
to:
td {
border-right: none;
border-bottom: none;
background: #fff;
color: #777;
}
2) In style.css change:
.entry img{
padding:4px;
display:block;
border:1px solid;
}
to:
.entry img{
padding:4px;
display:block;
border:none;
}
You can also follow the faq post here: http://www.kriesi.at/support/topic/how-to-remove-the-image-borders
You must log in to post.