How can I remove all the boarders around images on my 3k2?
I have searched and searched. Surely this is a common question or am I the only one who finds borders around every imaage annoying :)
Thank you in advance!
How can I remove all the boarders around images on my 3k2?
I have searched and searched. Surely this is a common question or am I the only one who finds borders around every imaage annoying :)
Thank you in advance!
In your CSS file put this:
img { border: 0; }
I wish it was that easy :)
I searched the css, any referrances to borders I was able to find were already 0
exactly where should this be located?
thx
Post the link to an example so we can have a look.
Where should this be placed exactly?
thanks
I should mention only post images
Find
#primary .itemtext img {
margin: 0 5px;
padding: 4px;
border: 1px solid #ccc;
max-width: 100%;
}
in your style and change to:
#primary .itemtext img {
margin: 0 5px;
padding: 4px;
border: 0px solid #ccc;
max-width: 100%;
}
BINGO!!!
thank you, this I would have never found :)
This topic has been closed to new replies.