Theme Bueno: how to delete frames around pictures?

  • Unknown's avatar

    I searched but couldn’t find an answer here.
    Which code do I have to add to CSS, so that I don’t have frames around my uploaded and embeded pictures anymore?
    Some time ago it was simply possible to be done on the file itself. But it’s not possible anymore. :(
    I am helpless. It’s for a new post, which is not published yet.

    It’s for bookwives.de

    The blog I need help with is: (visible only to logged in users)

  • Hi
    This will remove the frame around images that have captions

    .entry .wp-caption {
    	border: none;
    }

    Does that achieve your objective?

  • Oh and if you want to remove the light grey background as well you could try this instead:

    .entry .wp-caption {
    	padding: 0;
    	background: transparent;
    	border: none;
    }
  • Unknown's avatar

    Hi mouli,

    thanks. It worked for pics with captions.
    But pictures without captions are still with frame. Do you have any recommendation for that?

  • Hi
    Please try this instead of the code I sent earlier:

    .entry .wp-caption, .entry .image {
    	padding: 0;
    	background: transparent;
    	border: none;
    }

    I’m not sure which images you are referring to as I can’t see any on your site that don’t have captions, or do you meant the images in the widgets in the sidebar?
    Could you point me at a specific image so I can figure something out please.

  • Unknown's avatar

    It’s solved. thank you very much, mouli!

  • My pleasure again.

  • The topic ‘Theme Bueno: how to delete frames around pictures?’ is closed to new replies.