Removing borders

  • Unknown's avatar

    Hello, I used to be able to remove the pink photo border in the Bueno theme through the image editor but it looks like that option has been removed. Can you tell me how I can remove photo borders?

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

  • Unknown's avatar

    Hello,

    You can make sure there’s no border on the images using some custom CSS. When you go to the edit page for the post and click the “Text” tab (right next to “Visual”) at the top of the editing area, it shows you the HTML code for the post. For example, here’s the first image from your latest post:

    <a href="http://bluechakrawellness.files.wordpress.com/2014/04/belly-hand-2.jpg"><img class="aligncenter wp-image-1524 size-full" src="http://bluechakrawellness.files.wordpress.com/2014/04/belly-hand-2.jpg" alt="belly hand 2" width="441" height="258" /></a>

    We can get rid of the border by adding a style attribute to this HTML:

    <a href="http://bluechakrawellness.files.wordpress.com/2014/04/belly-hand-2.jpg"><img class="aligncenter wp-image-1524 size-full" src="http://bluechakrawellness.files.wordpress.com/2014/04/belly-hand-2.jpg" alt="belly hand 2" width="441" height="258" style="border: 0" /></a>

    Notice the style=”border: 0″ near the end. That’s what makes the border go away. You can find more information about using CSS at the Custom Design support page:

    http://en.support.wordpress.com/custom-design/custom-css/

    Even though you don’t have the Custom Design upgrade, you can still use CSS on individual parts of your post using the style attribute.

    Let me know if there’s anything else I can help you with.

    Radford

  • Unknown's avatar
  • Unknown's avatar

    No problem. Have a great day!

  • The topic ‘Removing borders’ is closed to new replies.