Removing image frame
-
Is it possible to remove the shadow border from images in WordPress.com? (I am using the Chateau theme)
The blog I need help with is: (visible only to logged in users)
-
To do this globally, you would have to have the WordPress.com Premium Plan upgrade which includes the Custom Design feature which allows you to add custom CSS.
You can try out and preview custom CSS before you buy as explained here. This would be the CSS you would need.
.post-entry img { border: none; box-shadow: none; }You can add an inline style to the image code on a image-by-image basis. You would switch to the Text tab in the editor and in the image code, place this right before the
src="...
so that it looked like this
style="border: none; box-shadow: none;" src="... -
-
- The topic ‘Removing image frame’ is closed to new replies.