My understanding of WordPress is not really deep, though I'd first have a look at
how CSS is integrated in WordPress. What you need to do to get that margin for your images, is to create a CSS rule with a class selector and then assign that class to the HTML elements, which should have that margin. E.g.
In the CSS:
.imageWithMargin {
margin: 15px;
}In the HTML:
<img src="..." alt="..." class="imageWithMargin"/>Just to clarify what JP Charrier means: Firebug's
Style side panel displays an
element.style rule, which represents the CSS styles assigned to an HTML element through its
style attribute. These are so-called 'inline styles' and they just apply to the current element.
Sebastian
On Sunday, November 2, 2014 7:53:33 PM UTC+1, JP Charrier wrote: