Removing space underneath Featured Image in TwentyTen
-
I am working on a redesign, locally hosted, which is different than what you currently can view.
I am attempting to put a box shadow on a featuredImage. A white space appears on the bottom between each featured image and its box shadow. Has anyone had this happen before in customizing the TwentyTen theme, and if so, what can be done so the box shadow conforms correctly to all four sides instead of just the top-right-left sides?
.featuredImage {
vertical-align: middle;
box-shadow: 5px 5px 9px #999999;
-moz-box-shadow: 5px 5px 8px #999999;
-webkit-box-shadow: 5px 5px 8px #999999;
}The blog I need help with is: (visible only to logged in users)
-
Resolved. Added this at the bottom of the custom style.css to remove it.
img {
display: block;
}
- The topic ‘Removing space underneath Featured Image in TwentyTen’ is closed to new replies.