Code conundrum
-
Hello
I have inputted the following recommended code, intended to enhance my images with the titled effects, with the following results:
1. To get a thin border:
img {
border: 1px solid #000000
}
– No impact2. To get a double border:
img {
padding: 1px
border: 1px solid #000000
}
– only the padding works: and only for the header image!! (which I’d wanted unaffected)3. To get a solid border of colour:
img {
padding: 1px;
border: 1px solid #000000
backbround-color: #000000
}
-Again only the padding only changes for the header image changes
-and the solid border works around everything else; although I had wanted to be able to select which images I’d wished to have bordered this way; not the “follow me” buttons eg:/
Anyone any ideas please?
- The topic ‘Code conundrum’ is closed to new replies.