Admin Forum:Screenshot class
Talk0
79,503pages on
this wiki
this wiki
This Forum has been archived
Forums: Admin Central Index → General Questions → Screenshot class
Wikia's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
To contact staff directly or to report bugs, please use Special:Contact.
I'm trying to make the screenshot class to make a photo have a #f7f7f7 colored border of 3px, and a shadow around the bottom and right side. Here was the CSS I used:
.screenshot { text-align: center; border: 3px solid #f9f9f9; box-shadow: 2px 2px 2px 2px #ccc; background-color: #ffffff; }
However, it displayed something like this. What was the problem — was the code I used in there wrong, or the CSS was used wrongly? -- Sam Wang (talk) 03:48, June 3, 2012 (UTC)
- If I don't misunderstand what you want to do, adding
display: inline-block;to this class should work. Cafeinlove msg 13:23, 2012-06-03 (UTC+9)
- With this code:
.screenshot { text-align: center; border: 3px solid #f9f9f9; box-shadow: 2px 2px 2px 2px #ccc; background-color: #ffffff; display: inline-block; }