My understanding of WordPress is not really deep, though I'd first have a 
look at how CSS is integrated in WordPress <http://codex.wordpress.org/CSS>. 
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 
<https://getfirebug.com/wiki/index.php/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:
>
> The "element" rule at the top of the css sidebar is for you to add styles. 
> The styles are applied to whatever is currently selected in the html window 
> pane. 
>
> Regards,
> JP Charrier
>
> Sent from my iPhone
>
> On 2/11/2014, at 4:39 pm, Christina Sosa wrote:
>
> I am learning how to use fire bug, and I have now know there is no way to 
> see where the HTML location is for changes made in fire bug on a page. Is 
> there a way to find the css location for changes to a page that does not 
> have a line number beside it? 
> I am trying to add a 15 px margin to images in some of my banners and in 
> the css on the right it says element and gives margin top but no line 
> number where I should add the changes. I had no luck with using the css 
> live extensions so I am completely lost now.  When I ask questions in 
> wordpress they always ask for my site so one of the pages I am trying to 
> edit is http://revolutionhtx.com/ministries/life-groups/.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/firebug.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/firebug/a1a7dde8-a058-4f2e-b8de-6805390b7679%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to